-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
58 lines (56 loc) · 1.58 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
/**
* @license
* Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/)
* SPDX-License-Identifier: BSD-3-Clause
*/
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
i18n: {
locales: ["en-US"],
defaultLocale: "en-US",
},
theme: {
extend: {
spacing: {
10: "2.5rem",
landingImg: "32rem",
},
maxWidth: {
page: "80rem",
"4.5xl": "60rem",
},
colors: {
background: "#FFFFFF",
primary: "#1E58F0",
primaryRipple: "#1E58F020",
primaryHoverButton: "#1E58F00A",
primaryActiveButton: "#1E58F013",
darkBackground: "#121212",
darkPrimary: "#4285F4",
darkPrimaryRipple: "#4285F420",
darkPrimaryHoverButton: "#4285F40A",
darkPrimaryActiveButton: "#4285F413",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
rubik: ["Rubik", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
},
},
variants: {
extend: {
backgroundColor: ["checked"],
borderColor: ["checked"],
inset: ["checked"],
zIndex: ["hover", "active"],
display: ["dark"],
},
},
plugins: [],
future: {
purgeLayersByDefault: true,
},
};