-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
tailwind.config.js
46 lines (44 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
darkMode: false,
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
primary: ["Bebas Neue", "cursive"],
body: ["Roboto Mono", "monospace"],
},
letterSpacing: {
wild: "0.3rem",
},
extend: {
colors: {
"brand-hightlight": "#32f9e5",
"brand-title": "#00F2FE",
"brand-muted": "#ffffff99",
"brand-bg": "var(--color-brand-bg)",
"brand-white": "var(--color-brand-white)",
"brand-highlight": "var(--color-brand-highlight)",
"brand-primary-highlight": "var(--color-brand-primary-highlight)",
},
keyframes: {
shimmer: {
"100%": {
transform: "translateX(100%)",
},
},
},
shadow: {
simple: "0px 0px 16px 1px rgba(104, 253, 198, 0.4)",
},
},
},
plugins: [
plugin(({ addVariant }) => {
addVariant("selected", '&[selected="1"]');
}),
],
};