generated from m1guelpf/dapp-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
63 lines (61 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
enabled: true,
darkMode: "class",
variants: {
fill: ['hover', 'focus'], // this line does the trick
},
theme: {
extend: {
colors: {
display: ["group-hover"],
bgd: "#101427",
op: "#F35454",
cit: "#F3A754",
mod: "#008A8A",
backgrounds: {
900: "#719CE4",//backgrounnd dark
800: "#2765cc",
700: "#75C31D",
600: "#9E9E9E",//button
500: "#FAFAFA",//white
400: "#2D3134",
300: "#5538b5",
200: "#cec5ed",
100: "#A898DF",//background light
},
lunar: {
100: "#119195",
200: "#0b979b",
300: "#119195",
400: "#178b8f",
500: "#247f82",
600: "#024269",
700: "#3e6768",
800: "#4a5b5c",
900: "#011B2F",
},
},
fontFamily: {
bau: ["Baumans"],
exo: ["Exo"],
},
borderRadius: {
dc: "12px",
dd: "40px",
gen: "32px",
med: "22px",
but: "52px",
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('tailwind-scrollbar-hide'),
// ...
],
};