forked from reactplay/activities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (40 loc) · 888 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
darkMode: "class",
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",
},
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"]');
}),
],
};