-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
62 lines (60 loc) · 1.23 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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: {
colors: {
secondary: "#43B9FB",
black: "#121217",
outline: {
gray: "#8A8AA3",
},
lavender: {
50: "#F6F6FE",
100: "#ECECFD",
200: "#D8D7FB",
300: "#C2BFF8",
400: "#A9A5F6",
500: "#8B85F4",
600: "#7C77DA",
700: "#6C67BD",
800: "#58549A",
900: "#3E3B6D",
},
surface: {
overlay: "#202020",
canvas: "#141414",
},
accent: {
gray: "#F7F7F8",
red: "#F53D6B",
},
background: {
accent: {
red: "#FEF0F4",
},
},
text: {
body: "#121217",
secondary: "#6C6C89",
accent: {
red: "#D50B3E",
},
},
input: {
destructive: "#F53D6B",
},
},
screens: {
xsm: "375px",
},
},
},
plugins: [],
darkMode: "class",
};
export default config;