-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.38 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
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{ts,tsx,jsx,js}"],
theme: {
extend: {
colors: {
tonehunt: {
gray: {
darker: "#101010",
dark: "#141414",
medium: "#222222",
light: "#4b5563",
lighter: "#909090",
disable: "#5b5b5b",
},
yellow: "#C1BC7A",
green: "#61C198",
purple: "#9685ff",
pink: "#BA7DC0",
orange: "#C87967",
blue: {
dark: "#4000C7",
medium: "#4E06E7",
light: "#5ab0ff",
},
},
},
fontFamily: {
"satoshi-light": "Satoshi-Light",
"satoshi-regular": "Satoshi-Regular",
"satoshi-medium": "Satoshi-Medium",
"satoshi-bold": "Satoshi-Bold",
},
fontSize: {
tiny: ".625rem",
},
textShadow: {
bg: "-1px 1px 0 rgba(255,255,255,0.03), 1px 1px 0 rgba(255,255,255,0.03), 1px -1px 0 rgba(255,255,255,0.03), -1px -1px 0 rgba(255,255,255,0.03);",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"text-shadow": (value) => ({
textShadow: value,
}),
},
{ values: theme("textShadow") }
);
}),
],
};