-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 918 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (29 loc) · 918 Bytes
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
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: 'var(--color-primary)',
secondary: 'var(--color-secondary)',
tertiary: 'var(--color-tertiary)',
quaternary: 'var(--color-quaternary)',//useing primary text color
quinary: 'var(--color-quinary)',//using as secondary text color
'blue-600': 'var(--color-blue-600)',
'gray-500': 'var(--color-gray-500)',
'yellow-300': 'var(--color-yellow-300)',
'yellow-500': 'var(--color-yellow-500)',
'yellow-100': 'var(--color-yellow-100)',
'yellow-900': 'var(--color-yellow-900)',
'surface-low': 'var(--color-surface-low)',
'disabled': 'var(--color-disabled)',
senary: 'var(--color-senary)',
text: 'var(--color-text)',
}
},
},
plugins: [],
}