forked from Stakeholder-Network-Map/HHI
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
46 lines (45 loc) · 1.12 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
/** Extended colors/fonts conforming to https://www.hsph.harvard.edu/communications-guide/ */
/** Screen sizes based on https://www.hsph.harvard.edu/atrocity-prevention-lab/collaborators/ */
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
harvard: {
'chan-gray': '#595859',
chocolate: '#422E1C',
putty: '#D7D1CB',
slate: '#8996a0',
},
red: {
light: '#E5CAC9',
DEFAULT: '#B55A5A',
dark: '#9D474B',
},
green: {
light: '#C9D0C0',
DEFAULT: '#888D81',
dark: '#5F6962',
},
shade: {
'01': '#252727',
'02': '#3D3D3D',
},
tint: {
'01': '#D6D6D7',
'02': '#F0F0F2',
},
},
},
fontFamily: {
merriweather: ['Merriweather', 'sans-serif'],
'proxima-nova': ['proxima-nova', 'sans-serif'],
},
},
plugins: [
({ addVariant }) => {
addVariant('not-last', '&:not(:last-child)')
},
],
}