-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (72 loc) · 1.73 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
69
70
71
72
73
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: ['./_site/**/*.html', './**/*.njk'],
theme: {
extend: {
colors: {
current: 'currentColor',
primary: '#000000',
accent: {
100: '#E8F3EB',
200: '#C7E1CE',
300: '#A5CEB1',
400: '#61AA76',
500: '#1D853B',
600: '#1A7835',
700: '#115023',
800: '#0D3C1B',
900: '#092812',
},
'accent-dark': {
100: '#FEFAEC',
200: '#FCF2CF',
300: '#FAEAB2',
400: '#F7DA78',
500: '#F3CA3E',
600: '#DBB638',
700: '#927925',
800: '#6D5B1C',
900: '#493D13',
},
background: '#FAFAFA',
'background-dark': '#222831',
'foreground-dark': '#393e46',
'primary-dark': '#EEEEEE',
'twitter': '#1b95e0',
'twitter-hover': '#0c7abf',
'reddit': '#ff5700'
},
fontFamily: {
'logo': ['Roboto Condensed', 'sans-serif'],
'main': ['Open Sans', 'sans-serif']
},
zIndex: {
'-1': '-1'
},
keyframes: {
scaleUp: {
'0%': { transform: 'scale(1)' },
'50%': { transform: 'scale(1.1)' },
'100%': { transform: 'scale(1)' }
}
},
animation: {
scaleUp: 'scaleUp 1s ease-in-out infinite'
},
boxShadow: {
'md-dark': '0 4px 6px -1px #393E46, 0 2px 4px -1px #393E46',
'2xl-dark': '0 25px 50px -12px #393E46',
}
}
},
// variants: {
// extend: {
// animation: ['hover'],
// boxShadow: ['dark']
// }
// },
plugins: [
require('@tailwindcss/forms'),
],
}