-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
42 lines (41 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
heading: ['Autour One', 'cursive'],
body: ['Abel', 'sans-serif'],
highlight: ['Architects Daughter', 'cursive'],
},
colors: {
light: {
bg: colors.slate[50],
heading: colors.slate[200],
body: colors.slate[300],
},
dark: {
bg: colors.slate[900],
heading: colors.slate[800],
body: colors.slate[700],
},
primary: {
lightest: colors.indigo[100],
lighter: colors.indigo[300],
normal: colors.indigo[500],
darker: colors.indigo[700],
darkest: colors.indigo[900],
},
secondary: {
lightest: colors.violet[50],
lighter: colors.violet[200],
normal: colors.violet[400],
darker: colors.violet[600],
darkest: colors.violet[800],
},
},
},
},
plugins: [],
}