-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 1016 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
39
40
41
import type { Config } from "tailwindcss";
import { screens } from "./utils/constants";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens,
extend: {
colors: {
dark: {
900: "hsl(0, 0%, 0%)",
800: "hsl(0, 0%, 6%)",
700: "#191919",
600: "#4C4C4C",
500: "hsla(0, 0%, 0%, 50%)",
overlay: "hsla(0, 0%, 0%, 40%)",
},
light: {
100: "hsl(0, 0%, 100%)",
200: "hsl(0, 0%, 98%)",
300: "hsl(0, 0%, 95%)",
400: "#F1F1F1",
450: "hsla(0, 0%, 100%, 75%)",
500: "hsla(0, 0%, 100%, 50%)",
600: "hsla(0, 0%, 59%, 20%)",
border: "hsla(0, 0%, 81%)",
},
accent: {
900: "hsl(22, 65%, 57%)",
600: "hsl(21, 94%, 75%)",
},
},
},
},
plugins: [],
};
export default config;