-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
85 lines (84 loc) · 2.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontFamily: {
ptb: ["PTBandocheB"],
ptr: ["PTBandocheR"],
},
extend: {
colors: {
"stock-slate": "#F8F4ED",
"stock-red": "#FF0C81",
"stock-green": "#D3FFB1",
"stock-purple": "#D6A7FF",
"stock-purple-79": "#794BE4",
"stock-border": "#96A7FF",
white: "#ffffff",
"stock-blue": {
50: "#e8f7ff",
100: "#d5f0ff",
200: "#b3e1ff",
300: "#85caff",
400: "#56a4ff",
500: "#2f7eff",
600: "#0c51ff",
700: "#0046ff",
800: "#0640cd",
900: "#103d9f",
950: "#0a225c",
},
"stock-lemon": {
50: "#fdffe7",
100: "#f9ffc1",
200: "#f8ff86",
300: "#fbff41",
400: "#fff80d",
500: "#ffea00",
600: "#d1ae00",
700: "#a67d02",
800: "#89610a",
900: "#744f0f",
950: "#442a04",
},
"stock-dark": {
50: "#f6f6f6",
100: "#e7e7e7",
200: "#d1d1d1",
300: "#b0b0b0",
400: "#888888",
500: "#6d6d6d",
600: "#5d5d5d",
700: "#4f4f4f",
800: "#424242",
900: "#3d3d3d",
950: "#262626",
},
},
boxShadow: {
"btn-blue-shadow": "-2px -4px 2px 0px rgba(47,0,255,0.17) inset",
"btn-white-shadow": "-2px -4px 2px 0px rgba(0,0,0,0.18) inset",
"alliance-drop-shadow": "0px 3px 4px 0px rgba(221,183,255,0.26)",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
"gradient-pink":
" linear-gradient(135deg, rgba(242,141,214,1) 0%, rgba(255,83,176,1) 100%);",
"somsatang-gradient": "linear-gradient(to bottom, #F9F0FF, #E8F7FF)",
"border-custom-dotted-thin": `url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%2396A7FFFF' stroke-width='4' stroke-dasharray='18%2c18' stroke-dashoffset='73' stroke-linecap='square'/%3e%3c/svg%3e")`,
"border-custom-dotted": `url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%2396A7FFFF' stroke-width='6' stroke-dasharray='18%2c18' stroke-dashoffset='78' stroke-linecap='square'/%3e%3c/svg%3e")`,
},
height: {
"screen-small": "100svh",
},
},
},
plugins: [],
};
export default config;