-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
70 lines (69 loc) · 1.56 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
import type { Config } from "tailwindcss";
import plugin from "tailwindcss/plugin";
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: {
extend: {
textShadow: {
DEFAULT: "1px 1px 1px #9897982F",
inset: "inset 1px 1px 3px rgba(255,255,255,0.7), inset -1px -1px 3px rgba(0,0,0,0.2)"
},
colors: {
background: {
DEFAULT: "#ECEDED",
variant: "#F6F6F6",
card: {
DEFAULT: "#EBEBEB",
primary: "#EBEBEB",
secondary: "#E8E8E8",
lcd: "#B6B9B0",
},
},
text: {
DEFAULT: "#5A5A5B",
},
muted: {
DEFAULT: "#989798",
dark: "#777777",
},
light: {
DEFAULT: "#F0F1F1",
variant: "#E5E5E5",
},
metal: {
DEFAULT: "#989BA6",
variant: "#6E7688",
},
ocean: {
DEFAULT: "#95BAE5",
variant: "#638AD1",
},
air: {
DEFAULT: "#DAE1E6",
variant: "#B1BDCB",
},
dark: {
DEFAULT: "#303343",
variant: "#272A37",
},
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"text-shadow": (value) => ({
textShadow: value,
}),
},
{ values: theme("textShadow") }
);
}),
],
};
export default config;