-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 938 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
35 lines (34 loc) · 938 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
navy: {
DEFAULT: "#002D54",
light: "#004077",
dark: "#001b33",
},
steel: {
DEFAULT: "#F4F7F9",
dark: "#e2e8f0",
},
orange: {
DEFAULT: "#FF6B00",
hover: "#e56000",
},
background: "var(--background)",
foreground: "var(--foreground)",
},
backgroundImage: {
"grid": "url(\"data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40V0h40' fill='none' stroke='%23cbd5e1' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E\")",
},
},
},
plugins: [],
};
export default config;