-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
36 lines (35 loc) · 896 Bytes
/
tailwind.config.ts
File metadata and controls
36 lines (35 loc) · 896 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
height: {
header: "90px",
home: "calc(100vh - 90px)",
},
backgroundColor: {
"landing-dark": "#07111A",
"landing-light": "#C1C1C1",
"primary-dark": "#08141F",
"primary-light": "#D3D3D3",
"secondary-dark": "#16B573",
"secondary-light": "#39A7FF",
"line-dark": "#D9D9D9",
"line-light": "#222222",
},
textColor: {
"primary-dark": "#FFFFFF",
"primary-light": "#000000",
"secondary-dark": "#16B573",
"secondary-light": "#39A7FF",
},
},
},
plugins: [],
};
export default config;