-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
65 lines (59 loc) · 1.3 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
textShadow: {
sm: "0 0 0.125em var(--tw-shadow-color)",
DEFAULT:
"0 0 0.125em var(--tw-shadow-color), 0 0 0.2em var(--tw-shadow-color)",
lg: "0 0 1em var(--tw-shadow-color), 0 0 0.2em var(--tw-shadow-color)",
},
},
colors: {
cyan: "#5efdf7",
magenta: "#ff5dcc",
yellow: "#fdfe89",
white: "#ffffff",
blue: {
1: "#85daeb",
2: "#5fc9e7",
3: "#5fa1e7",
4: "#5f6ee7",
5: "#4c60aa",
6: "#444774",
},
purple: {
1: "#ca60ae",
2: "#ab58a8",
3: "#855395",
4: "#5d4776",
5: "#463c5e",
6: "#32313b",
},
orange: {
1: "#f5daa7",
2: "#f3a787",
},
green: {
1: "#8dd894",
2: "#5dc190",
3: "#4ab9a3",
4: "#4593a5",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"text-shadow": (value) => ({
textShadow: value,
}),
},
{ values: theme("textShadow") }
);
}),
],
};