-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
backdrop: 'rgb(var(--color-backdrop))',
primary: 'rgb(var(--color-text-primary))',
secondary: 'rgb(var(--color-text-secondary))',
button: {
primary: 'rgb(var(--color-button-primary))',
secondary: 'rgb(var(--color-button-secondary))',
},
background: {
1: 'rgb(var(--color-background1))',
2: 'rgb(var(--color-background2))',
3: 'rgb(var(--color-background3))',
4: 'rgb(var(--color-background4))',
5: 'rgb(var(--color-background5))',
},
human: {
1: 'rgb(var(--color-human-accent1))',
2: 'rgb(var(--color-human-accent2))',
3: 'rgb(var(--color-human-accent3))',
4: 'rgb(var(--color-human-accent4))',
},
engine: {
1: 'rgb(var(--color-engine-accent1))',
2: 'rgb(var(--color-engine-accent2))',
3: 'rgb(var(--color-engine-accent3))',
4: 'rgb(var(--color-engine-accent4))',
},
},
},
},
plugins: [],
}