-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (34 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors")
const { fontFamily } = require("tailwindcss/defaultTheme")
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
transparent: "transparent",
"light-text": "rgba(255, 255, 255, 0.75)",
"grey-text": "rgba(255, 255, 255, 0.5)",
...colors,
},
container: {
center: true,
},
fontFamily: {
LucidaConsole: ["LucidaConsole", "Sans-serif"],
AldrichRegular: ["Aldrich-Regular", "Sans-serif"],
InterMedium: ["Inter-Medium", "Sans-serif"],
...fontFamily,
},
extend: {
backgroundImage: {
"head-bg": "url('assets/background/head-bg.png')",
"head2-bg": "url('assets/background/head2-bg.png')",
"s2-bg": "url('assets/background/s2-bg.png')",
"s2mb-bg": "url('assets/background/s2-mobile.png')",
"s4-bg": "url('assets/background/s4-bg.png')",
"nav-bg": "url('assets/background/nav-bg.png')",
},
},
},
plugins: [],
}