-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (32 loc) · 963 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
bgColor: {
primary: "#212529",
secondary: "#0D1013",
trinary: "#495057",
},
blue: {
default: "#017EA7",
dark: "#003459",
light: "#06B6D4",
text: "#00A8E8",
},
},
fontFamily: {
manrope: ["Manrope", "sans-serif"],
manropeSemiBold: ["ManropeSemiBold", "sans-serif"],
manropeBold: ["ManropeBold", "sans-serif"],
manropeExtraBold: ["ManropeExtraBold", "sans-serif"],
manropeLight: ["ManropeLight", "sans-serif"],
manropeExtraLight: ["ManropeExtraLight", "sans-serif"],
manropeMedium: ["ManropeMedium", "sans-serif"],
manroperegular: ["ManropeRegular", "sans-serif"],
},
},
},
plugins: [],
};