-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (53 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
import colors from 'tailwindcss/colors'
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'Lato', 'system-ui', 'sans-serif'],
nunito: ['Nunito', 'Inter', 'Lato', 'system-ui'],
},
colors: {
lm: {
primary: {
100: colors.slate[500],
200: colors.slate[600],
300: colors.slate[800],
400: colors.slate[900],
500: colors.slate[950],
contr: colors.gray[50]
},
primaryText: colors.gray[950],
secondaryText: colors.gray[500],
},
dm: {
primary: {
100: colors.white,
200: colors.slate[50],
300: colors.slate[50],
400: colors.slate[300],
500: colors.slate[400],
contr: colors.gray[950]
},
primaryText: colors.gray[50],
secondaryText: colors.gray[300],
bg: {
100: colors.zinc[700],
200: colors.zinc[800],
300: colors.zinc[900],
}
}
},
height: {
'v-90': '90vh',
'v-70': '70vh',
}
},
},
plugins: [],
}