-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (45 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
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
},
content: [
"index.html"
],
theme: {
fontFamily: {
sans: 'sans-serif',
},
extend: {
colors: {
"brand-primary": "#6ddbb4",
"brand-primary-light": "#e2edda",
"brand-primary-medium": "#6ddbb4",
"brand-primary-dark": "#31b285",
"additional-primary": "#fff1e3",
"additional-primary-light": "#faf4f0",
"additional-primary-medium": "#fff1e3",
"additional-primary-dark": "#ccae91",
"additional-secondary": "#070727",
"additional-secondary-light": "#0c0c46",
"additional-secondary-medium": "#070727",
"additional-secondary-dark": "#010029",
"white": "white",
"grey-0": "#c7c7f2",
"grey-25": "#9595bf",
"grey-50": "#51518c",
"grey-75": "#222259",
"grey-100": "#070727",
},
spacing: {
0: "0px",
1: "4px",
2: "8px",
3: "16px",
4: "24px",
5: "32px"
}
},
},
plugins: [],
}