-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
47 lines (47 loc) · 815 Bytes
/
Copy pathtailwind.config.cjs
File metadata and controls
47 lines (47 loc) · 815 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
colors: {
cardinal: '#990000',
gold: '#ffcc00',
black: '#000',
white: '#fff',
'dark-gray': '#777',
'light-gray': '#ccc',
'dark-gold': '#edb042',
'dark-cardinal': '#8d2824',
'accent-green': '#A4B83D',
'accent-orange': '#D04C29',
transparent: 'transparent'
},
zIndex: {
background: 1,
content: 2,
overlay: 3
},
fontFamily: {
sans: ['National', 'sans-serif'],
serif: ['adobe-caslon-pro', 'serif']
},
extend: {
borderWidth: {
3: '3px'
},
height: {
22: '5.5rem'
},
margin: {
26: '6.5rem',
'1/10': '10%'
},
inset: {
unset: 'unset'
},
spacing: {
unset: 'unset'
}
}
},
plugins: []
};