-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 920 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 920 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'media', // bool or 'media' (system setting) or 'class' (toggle manually)
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
sans: ["Rubik", "sans-serif"],
glitch: ["Rubik Glitch", "Rubik", "sans-serif"],
monoone: ["Rubik Mono One", "Rubik", "sans-serif"],
},
colors: {
theme: {
primary: "#DC3C4D",
secondary: "#E7D27C",
background: "#121212",
surface: "#262626",
// error: "",
onPrimary: "#EAFDF8",
onSecondary: "#121212",
onBackground: "#EAFDF8",
onSurface: "#EAFDF8",
// onError: ""
}
},
},
},
plugins: [],
}