-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 935 Bytes
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line import/no-unresolved
import colors from "tailwindcss/colors"
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
montserrat: ["Montserrat", "sans-serif"]
}
},
colors: {
primary: {
light: colors.gray[400],
DEFAULT: colors.gray[800],
dark: colors.gray[900]
},
secondary: {
light: colors.cyan[400],
DEFAULT: colors.cyan[800],
dark: colors.cyan[900]
},
accent: {
light: colors.emerald[400],
DEFAULT: colors.emerald[800],
dark: colors.emerald[900]
},
bgGradientFrom: "#1b2735",
bgGradientTo: "#090a0f",
bgGradientCardFrom: "#2e3a4c",
bgGradientCardTo: "#1f2633",
borderColor: colors.cyan[600],
focusColor: colors.emerald[500]
}
},
plugins: []
}