-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (41 loc) · 1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [ './src/**/*.{html,js,svelte,ts}' ],
theme: {
extend: {
fontFamily: {
sofia : [ 'Sofia sans', 'sans serif' ]
},
fontWeight: {
extrablack : '900'
}
},
colors: {
'primary': '#ffb68f',
'secondary': '#e6beab',
'tertiary': '#cec891',
'error': '#ffb4ab',
'background': '#201a17',
'foreground': '#2b221d',
'outline': '#9f8d84',
'on-primary': '#542100',
'on-secondary': '#432b1d',
'on-tertiary': '#343108',
'on-error': '#690005',
'on-background': '#ece0db',
'primary-container': '#773200',
'secondary-container': '#5c4132',
'tertiary-container': '#4b481d',
'error-container': '#93000a',
'surface': '#201a17',
'surface-variant': '#52443d',
'on-primary-container': '#ffdbca',
'on-secondary-container': '#ffdbca',
'on-tertiary-container': '#eae5ab',
'on-error-container': '#ffdad6',
'on-surface': '#ece0db',
'on-surface-variant': '#d7c2b9'
}
},
plugins: []
};