-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
40 lines (35 loc) · 1.18 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
import type { Config } from "tailwindcss";
const config: Config = {
// TODO
darkMode: "selector",
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: {
light: "rgb(255,255,255)",
dark: "rgb(40,44,53)",
primary: "rgb(59 130 246)",
secondary: "hsl(240deg 55% 6%)",
darkBG: "rgb(19,27,71)",
primaryDisabled: "rgb(5, 40, 97)",
darkScroll: "#212121",
lightScroll: "#f5f5f5",
},
backgroundImage: {
"dark-bg-gradient":
"linear-gradient(75deg, hsl(240deg 64% 9%) 0%, hsl(240deg 63% 8%) 6%, hsl(240deg 62% 8%) 17%, hsl(240deg 61% 7%) 35%, hsl(240deg 59% 7%) 60%, hsl(240deg 58% 6%) 81%, hsl(240deg 55% 6%) 92%, hsl(240deg 52% 5%) 98%, hsl(240deg 47% 5%) 100%, hsl(240deg 37% 4%) 100%)",
"light-bg-gradient":
"linear-gradient(75deg, rgba(230,230,246,1) 0%, rgba(218,217,234,1) 50%, rgba(234,234,245,1) 100%)",
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [],
};
export default config;