-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (35 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}", "./src/App.jsx"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
fontFamily: {
main: ["abolition", "sans-serif"] /* example: Player 1 */,
mainSoft: ["abolition-soft", "sans-serif"],
sub: ["video", "serif"] /* example: Monday */,
smallText: [
"din-2014",
"sans-serif",
] /* example: game session scheduler */,
},
extend: {
colors: {
white: "#ffffff",
black: "#000000",
cyan: "#00E2FC",
grey: "#BFCCD8",
red: "#FF304D",
darkGrey: "#312323",
blue: "#009FFA",
pinkHover: "#fab4be",
overlay: "rgba(1,43,67, 0.88)",
},
},
},
plugins: [],
};