-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
103 lines (101 loc) · 2.4 KB
/
tailwind.config.ts
File metadata and controls
103 lines (101 loc) · 2.4 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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",
black2: "#141414",
outline: {
gray: "#8A8AA3",
},
lavender: {
50: "#F6F6FE",
100: "#ECECFD",
200: "#D8D7FB",
300: "#C2BFF8",
400: "#A9A5F6",
500: "#8B85F4",
600: "#7C77DA",
700: "#6C67BD",
800: "#58549A",
900: "#3E3B6D",
},
yellow: {
primary: "#F2C71C",
secondary: "#ffecc2",
},
warning: {
background: '#FFECC2',
text: '#F2C71C',
foreground: '#61500B'
},
surface: {
overlay: "#202020",
canvas: "#141414",
},
accent: {
gray: "#F7F7F8",
red: "#F53D6B",
},
background: {
accent: {
red: "#FEF0F4",
},
neutral: "#F9FAFB",
},
border: {
light: "#EBEBEF",
input: "#D1D1DB",
},
text: {
body: "#121217",
secondary: "#6C6C89",
accent: {
red: "#D50B3E",
gray: "#3F3F50",
},
disabled: "#A9A9BC",
placeholder: "#A9A9BC",
},
input: {
destructive: "#F53D6B",
focus: "#141414",
},
icon: {
outline: {
secondary: "#8A8AA3",
disabled: "#D1D1DB",
},
},
},
screens: {
xsm: "375px",
xmd: "425px",
},
keyframes: {
"rocket-shake": {
"0%, 100%": { transform: "translateY(0) rotate(-2deg)" },
"20%": { transform: "translateY(-2px) rotate(2deg)" },
"40%": { transform: "translateY(2px) rotate(-2deg)" },
"60%": { transform: "translateY(-1px) rotate(1deg)" },
"80%": { transform: "translateY(1px) rotate(-1deg)" },
},
},
animation: {
"rocket-shake": "rocket-shake 0.7s infinite",
},
fontFamily: {
'inter': ['"Inter"', 'system-ui', 'arial', 'sans-serif'],
},
},
},
plugins: [],
darkMode: "class",
};
export default config;