-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
tailwind.config.cjs
executable file
·63 lines (62 loc) · 1.47 KB
/
tailwind.config.cjs
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
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
content: ['./public/**/*.html', './packages/renderer/**/*.{js,jsx,ts,tsx,vue,html}'],
darkMode: 'class',
theme: {
extend: {
fontFamily:{
'primary': ['Arimo'],
'arimo': ['Arimo'],
'avenir': ['Avenir'],
'eb-garamond': ['EB Garamond'],
'helvetica': ['Helvetica', 'sans-serif'],
'open-dyslexic': ['Open Dyslexic'],
'ubuntu': ['Ubuntu']
},
colors: {
primary: colors.amber['400'],
secondary: colors.amber['300'],
gray: colors.gray,
amber: {
'50': '#FFFBEB',
'100': '#FEF3C7',
'200': '#FDE68A',
'300': '#FCD34D',
'400': '#FBBF24',
'500': '#F59E0B',
'600': '#D97706',
'700': '#B45309',
'800': '#92400E',
'900': '#78350F',
},
neutral: {
'50': 'fafafa',
'100': '#f5f5f5',
'200': '#e5e5e5',
'300': '#d4d4d4',
'400': '#a3a3a3',
'500': '#737373',
'600': '#525252',
'700': '#404040',
'800': '#262626',
'900': '#171717',
'950': '#0a0a0a',
},
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
},
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
};