forked from argentlabs/dappland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (43 loc) · 1.11 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
const defaultTheme = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: [...defaultTheme.fontFamily.sans],
serif: ["Barlow", ...defaultTheme.fontFamily.serif],
},
fontSize: {
...defaultTheme.fontSize,
button: "17px",
},
boxShadow: {
...defaultTheme.boxShadow,
"box-image-shadow": "0px 1px 4px rgba(0, 0, 0, 0.15)",
"box-image-shadow-hover": "0px 1px 4px rgba(0, 0, 0, 0.2)",
},
colors: {
...defaultTheme.colors,
black: "#000",
white: "#fff",
pink: "#FF5B81",
lightgrey: "#8F8D8C",
clay: "#C2C0BE",
"light-black": "#181818",
"smoked-white": "#f7f7f7",
"light-charcoal": "#8F8E8C",
"border-grey": "#ededed",
"dark-charcoal": "#5c5b59",
"accessible-green": "#02A697",
"tooltip-dark": "#333333",
"hero-dark": "#1F1F1F",
},
extend: {
gridTemplateColumns: {
"dapp-header": "3fr 1fr 1fr",
},
},
},
plugins: [],
}