forked from getAlby/lightning-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (66 loc) · 2.03 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
66
67
68
69
70
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
function lighten(color, percent) {
var num = parseInt(color.replace("#", ""), 16),
amt = Math.round(2.55 * percent),
R = (num >> 16) + amt,
B = ((num >> 8) & 0x00ff) + amt,
G = (num & 0x0000ff) + amt;
return (
"#" +
(
0x1000000 +
(R < 255 ? (R < 1 ? 0 : R) : 255) * 0x10000 +
(B < 255 ? (B < 1 ? 0 : B) : 255) * 0x100 +
(G < 255 ? (G < 1 ? 0 : G) : 255)
)
.toString(16)
.slice(1)
);
}
const surfaceColor = "#121212";
module.exports = {
darkMode: "class",
content: ["./static/views/**/*.html", "./src/app/**/*.{js,ts,jsx,tsx}"],
plugins: [require("tailwindcss-3d"), require("@tailwindcss/forms")],
theme: {
extend: {
animation: {
"spin-fast": "spin 0.7s linear infinite",
},
fontFamily: {
sans: ["Open Runde", ...defaultTheme.fontFamily.sans],
serif: ["Catamaran", ...defaultTheme.fontFamily.sans],
},
fontSize: {
xxxs: ".5rem",
xxs: ".625rem",
},
screens: {
short: { raw: "(max-height: 800px)" },
},
spacing: {
18: "4.5rem",
},
colors: {
primary: "#F8C455",
"green-bitcoin": "#27ae60",
// Material Design Surface Colors
"surface-00dp": surfaceColor,
"surface-01dp": lighten(surfaceColor, 5),
"surface-02dp": lighten(surfaceColor, 7),
"surface-03dp": lighten(surfaceColor, 8),
"surface-04dp": lighten(surfaceColor, 9),
"surface-06dp": lighten(surfaceColor, 11),
"surface-08dp": lighten(surfaceColor, 12),
"surface-12dp": lighten(surfaceColor, 14),
"surface-16dp": lighten(surfaceColor, 15),
"surface-24dp": lighten(surfaceColor, 16),
},
},
backgroundImage: (theme) => ({
"primary-gradient": `linear-gradient(180deg, #FFDE6E 63%, #F8C455 95%)`,
"primary-gradient-hover": `linear-gradient(180deg, #F2D369 63%, #ECBA51 95%)`,
}),
},
};