-
Notifications
You must be signed in to change notification settings - Fork 182
/
tailwind.config.js
82 lines (78 loc) · 2.23 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
74
75
76
77
78
79
80
81
82
// Tailwind Config
const { colors } = require('tailwindcss/defaultTheme')
//#E9A34F
// 110 182 239 primary #6EB6EF light blue
// 233 163 79 secondary #E9A34F orange
// darker orange #a46314
// 63 101 127 other #3F657F dark blue
module.exports = {
content: ['./_site/*.html'],
theme: {
colors: {
primary: {
default:'#a46314',//'#8ca8c4',// '#701c00',//'#841617',//#26853c', // '#7f6c5e',
800: '#a46314',//'#8ca8c4',//'#004c03', // '#7f6c5e',
700: '#a46314',//'#8ca8c4',//'#00661c', // '#7f6c5e',
600: '#a46314',//'#8ca8c4',//'#7db68a', // '#b9aba1',
500: colors.white,
200: '#a46314',//'#8ca8c4',//'#6aa868', // '#b9aba1',
100: '#a46314',//colors.white, // '#b9aba1',
},
secondary: {
default: '#3F657F',//'#8ca8c4', //'#1d3160',//'#6f2184', // '#c42026',
800: '#3F657F',//'#8ca8c4',//'#1d3160',//'#6f2184', // '#b42026',
700: '#3F657F',//'#8ca8c4',//'#8c3800',//'#853899', // '#c42026',
600: '#3F657F',//'#8ca8c4',//'#9b4faf', // '#d3855f',
200: '#3F657F',//colors.white, // '#e0a778',
100: '#3F657F',//colors.white, // '#e0a778',
},
accent: {
default: '#3F657F',//'#8ca8c4',// '#1d3160',//'#6f2184', // '#b9aba1',,
minor: '#E9A34F',//'#8ca8c4',// '#fbc31b',
blue: '#6EB6EF',//'#8ca8c4',// '#fbc31b',
},
black: colors.black,
white: colors.white,
gray: {
'100': '#feffff',
'200': '#f2f3f2',
'300': '#e6e7e4',
'400': '#bdbdbd',
'500': '#9e9e9e',
'600': '#757575',
'700': '#616161',
'800': '#424242',
'900': '#212121',
}, //colors.gray,
},
fontFamily: {
'display': ['"Zilla Slab"', 'serif'],
'body': ["'Fira Sans'", 'sans-serif']
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
borderWidth: {
default: '1px',
'0': '0',
'2': '2px',
'3': '3px',
'4': '4px',
'8': '8px',
},
},
variants: {},
plugins: [],
corePlugins: {
container: false,
}
}