-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
78 lines (76 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import plugin from 'tw-elements-react/dist/plugin.cjs';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./src/**/*.css',
'"./node_modules/tw-elements-react/dist/js/**/*.js"',
],
theme: {
extend: {
acai: {
primary: '#805B7A',
secondary: '#758496',
white: '#E7E9E5',
neutral: '#84868E',
black: '#2B313B',
dark: '#402B35',
darker: '#21171B',
},
backgroundColor: {
lighter: '#313b4b',
light: '#212529',
dark: '#15191d',
base: '#0d0d0d',
user: '#373737',
acai: '#5F3C4F',
'acai-light': '#805B7A',
'acai-dark': '#402B35',
'acai-darker': '#21171B',
darker: '#090909',
'acai-white': '#E7E9E5',
},
borderColor: {
lighter: '#626262',
light: '#313b4b',
dark: '#2f2f2f',
darker: '#090909',
},
textColor: {
light: '#E7E9E5',
default: '#ffffff',
dark: '#a8a8a8',
'acai-primary': '#5F3C4F',
'acai-white': '#E7E9E5',
'acai-light': '#79586C',
'acai-dark': '#402B35',
'acai-darker': '#21171B',
lighter: '#626262',
neutral: '#313b4b',
},
outlineColor: {
acai: '#5F3C4F',
'acai-light': '#79586C',
'acai-dark': '#402B35',
'acai-darker': '#21171B',
lighter: '#626262',
light: '#313b4b',
dark: '#2f2f2f',
darker: '#090909',
},
gradientColorStops: (theme) => ({
acai: '#5F3C4F',
'acai-light': '#79586C',
'acai-dark': '#402B35',
'acai-darker': '#21171B',
lighter: '#626262',
light: '#313b4b',
dark: '#2f2f2f',
darker: '#090909',
...theme('colors'),
}),
},
},
darkMode: 'class',
plugins: [plugin],
};