-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
69 lines (68 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'crimson' : ['CrimsonPro', 'serif'],
},
extend: {
animation: {
fade: 'fadeIn .15s ease-in-out',
},
keyframes: {
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
fadeOut: {
from: { opacity: 1 },
to: { opacity: 0 },
}
},
backgroundImage: {
'graph-paper': "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGkAAABpBAMAAADLrBAJAAAAElBMVEW9vb2SkpK9vb29vb2+vr69vb3CFyyWAAAABnRSTlM+B2AzHE0R53HmAAAAdklEQVR4AWNgECQDMjAZK4GgiRKEdobQqsYQOgirrAKDMEFlmLIG5Okiz4U4dY36a9RfIqEuJEOHkRZfo/4a9Rd5OWXExdeov0b9xepCelYJGGnxNeqvUX+Rl1PI89dofI36a7SfMhpfo/4a7aeM9lNG/TXqLwCwpddSj5lJkwAAAABJRU5ErkJggg==)"
},
colors: {
red : {
50 : '#ffc5cd',
100 : '#ff9db1',
200 : '#ff7598',
300 : '#ff5183',
400 : '#fe2b71',
500 : '#ff0466',
600 : '#d6004f',
700 : '#ab033c',
800 : '#81022b',
900 : '#59021b',
accent : "#59dfaa"
},
green : {
50 : '#e7f5e9',
100: '#c8e6c9',
200: '#a5d6a7',
300: '#81c784',
400: '#66bb6a',
500: '#4caf50',
600: '#44a047',
700: '#388e3c',
800: '#2f7d32',
900: '#1a5e20',
accent : "#4caf50"
},
'theme-primary' : 'var(--primary-color)',
'theme-secondary' : 'var(--secondary-color)',
'theme-accent' : 'var(--accent-color)',
'theme-background' : 'var(--background-color)',
'theme-background-secondary' : 'var(--background-alt-color)',
'theme-font-primary' : 'var(--font-color-primary)',
'theme-font-secondary' : 'var(--font-color-secondary)',
'theme-button-background' : 'var(--button-background)',
'theme-error' : 'var(--error-color)',
},
},
},
plugins: [],
}