-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
47 lines (47 loc) · 1.09 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
module.exports = {
// purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
purge: false,
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
black: '#000',
white: '#fff',
primary: {
DEFAULT: '#005A64',
muted: '#71A2A8',
light: '#C2D8DA',
lighter: '#D4E4E6',
dark: '#003940',
},
secondary: {
DEFAULT: '#00ACB2',
light: '#87E4DB',
},
highlight: '#CBF0C1',
skin: {
muted: '#FAFCFC',
DEFAULT: '#E5EEEF',
},
},
fontFamily: {
'inter': ['Inter', 'sans-serif'],
'robotoSlab': ['Roboto Slab', 'serif'],
'roboto': ['Roboto', 'sans-serif'],
'noto': ['Noto Sans'],
'alegreya': ['Alegreya Sans SC', 'sans-serif'],
},
fontSize: {
'xxs': '0.69rem',
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};