-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (45 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,njk,css}",
"./main.js"],
darkMode: "media",
theme: {
extend: {
colors: {
"colour-primary": "#3E3A37",
"colour-primary-lighter": "#65615F",
"colour-dark": "#3E3A37",
"colour-dark-2": "#4E4A47",
"colour-light": "#E5E1DB",
"colour-secondary": "#00adee",
"colour-2":"#a59a89",
"colour-3":"#baac9a",
"colour-4":"#ccbfad",
"colour-accent": "#89A79A",
"colour-neutral": "#E5E1DB",
"colour-text-main": "#353535",
"c-bg-l": "#eff1f8",
"c-bg2-l": "#f4f5f7",
"c-txt-l": "#393939",
"c-fg1-l": "#ffffff",
"c-fg2-l": "#a4b6c2",
"c-fg3-l": "#00adee",
"c-fg4-l": "#26C6DA",
"c-h-l": "#582dd6",
"c-bg-d": "#ffffff",
"c-bg2-d": "#f4f5f7",
"c-txt-d": "#393939",
"c-fg1-d": "#a4b6c2",
"c-fg2-d": "#d0d0c4",
"c-fg3-d": "#ea696b",
"c-fg4-d": "#26C6DA",
"c-h-d": "#582dd6",
}
},
fontFamily: {
sans: ['Arial', 'sans-serif'],
serif: ['Merriweather', 'serif'],
commy: ['Arial']
},
},
}