forked from LoafPickleWW/wen-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 987 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
spacing: {
108: "27rem",
},
colors: {
"orange-1000": "#C254414B",
"red-1000": "#801F19",
"special-red": "#7a0909",
"primary-orange": "#f57b14",
"primary-blue": "#6EC1E4",
"primary-yellow": "#FFC000",
"primary-red": "#BB000E",
"secondary-orange": "#f57b14",
"secondary-yellow": "#F7DF7C",
"primary-black": "#010002",
"primary-gray": "#D0D0D1",
"secondary-gray": "#393C3A",
"secondary-black": "#000a02",
"banner-grey": "#262626",
"text-white": "#f9fafb",
},
fontSize: {
xxs: "0.6rem",
},
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
},
plugins: [],
};