-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
34 lines (33 loc) · 915 Bytes
/
tailwind.config.ts
File metadata and controls
34 lines (33 loc) · 915 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
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: {
backgroundColor: {
dark: "rgb(15, 24, 42)",
light: "#ffffff",
},
colors: {
blue: "#007AFF",
green: "#00C676",
lime: "#E2FF00",
black: "#222222",
primary: "rgba(var(--color-primary), <alpha-value>)",
secondary: "rgba(var(--color-secondary), <alpha-value>)",
point: "rgba(var(--color-point), <alpha-value>)",
foreground: "rgba(var(--foreground-rgb), <alpha-value>)",
background: "rgba(var(--background-rgb), <alpha-value>)",
},
zIndex: {
"modal-overlay": "899",
"modal-content": "900",
},
},
},
plugins: [],
};
export default config;