-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.05 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
module.exports = {
mode: 'jit',
content: [
"./assets/**/*.css",
"./components/*.{vue,js}",
"./components/**/*.{vue,js}",
"./pages/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.{vue,js,ts}",
],
theme: {
colors: {
'white': '#ffffff',
'black': '#000000',
'grey': '#F2F2F2',
'pink': '#F257D8',
'paradise-pink': '#DC485A',
'light-purple': '#BC6BF2',
'dark-purple': '#7C1ED9',
'navy-blue': '#282140',
'super-red': '#C7302B',
'green': '#27AE60',
'transparent': 'transparent',
},
extend: {
rotate: {
'135': '135deg',
},
screens: {
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2304px',
},
aspectRatio: {
'4/3': '4 / 3',
},
scale: {
'200': '2',
},
backgroundImage: {
'light': "url('/images/background_light.png')",
'dark': "url('/images/background_dark.png')",
}
}
},
darkMode: ['class', '[data-theme="dark"]'],
plugins: [],
}