-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
60 lines (59 loc) · 1.54 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
primary: {
100: "#D9F0FB", // light blue
200: "#D3E0E7", // light gray blue
500: "#2DA7DD", // primary blue
},
dark: {
800: "#020E14", // almost black
700: "#04202e",
},
light: {
100: "#F7F7F7", // light gray
200: "#F5F5F5", // light gray
300: "#E5E5E5", // light gray
},
accent: {
400: "#2dddba", // cyan green
600: "#2d50dd", // navy blue
700: "#1a3dc5",
800: "#001ca8", // darker blue
},
darkmode: {
900: "#121212",
800: "#1D1D1D",
700: "#222222",
600: "#252525",
500: "#2C2C2C",
400: "#323232",
300: "#383838",
},
},
fontFamily: {
// inter: ["var(--font-inter)"],
josefin: ["var(--font-josefin)"],
outfit: ["var(--font-outfit)"],
},
transitionProperty: {
height: "height",
},
},
},
plugins: [require("@tailwindcss/typography")],
darkMode: "class",
}
export default config