-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
39 lines (39 loc) · 962 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: {
sansSerif: ['Open Sans', 'sans-serif'],
mono: ['Source Code Pro', 'monospace'],
handwriting: ['Kalam', 'cursive']
},
extend: {
colors: {
background: '#FEFEFE',
surface: '#EBEAEB',
surfaceAccent: '#EBEAEB',
primary: '#1F1C21',
primaryAccent: '#151316',
primaryContrast: '#F5F5F5',
secondary: '#BBB7B4',
secondaryAccent: '#7D777A',
secondaryContrast: '#F5F5F5',
success: '#69DC9E',
warning: '#F7EF99',
attention: '#E63B2E'
},
zIndex: {
menu: 90,
menuBar: 91,
menuClearFilter: 92,
overlay: 997,
modal: 998,
loadingSpinner: 996
},
gridTemplateColumns: {
formsQuantityInput: '1fr 1fr'
}
}
},
plugins: []
}