-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (55 loc) · 1.09 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./stores/**/*.{js,ts}',
'./app.vue',
'./nuxt.config.{js,ts}',
],
theme: {
colors: {
white: '#E8EFF6',
black: '#1E1C1C',
orange: {
500: '#DB7E11',
600: '#C86B27',
700: '#B96400',
},
blue: {
600: '#0680A6',
},
'orange-gray': {
100: '#DFDFDF',
200: '#BFBFBF',
900: '#353434',
},
'blue-gray': {
50: '#DEE3E8',
100: '#D6DCE3',
200: '#B8C6CB',
},
},
extend: {
spacing: {
'sticky-widget': '2rem',
0.25: '0.188rem',
'action-panel': '17.5rem',
},
fontSize: {
xxs: '0.688rem',
'sm-2': '0.938rem',
},
width: {
page: '33.125rem',
'action-panel-popover': '21.25rem',
},
fontFamily: {
nunito: ['Nunito', 'sans-serif'],
},
},
},
plugins: [],
}