-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (60 loc) · 1.88 KB
/
tailwind.config.js
File metadata and controls
65 lines (60 loc) · 1.88 KB
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
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./*.html"],
theme: {
screens: {
sm: "576px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1200px",
// => @media (min-width: 1200px) { ... }
xxl: "1400px",
// => @media (min-width: 1400px) { ... }
},
extend: {
fontFamily: {
// Add your custom fonts
PlusJakartaSans: ["Plus Jakarta Sans", "sans-serif"],
DmSans: ["DM Sans", "sans-serif"],
GeneralSans: ["General Sans", "sans-serif"],
Cabin: ["Cabin", "sans-serif"],
PublicSans: ["Public Sans", "sans-serif"],
Syne: ["Syne", "sans-serif"],
ClashDisplay: ["Clash Display", "sans-serif"],
Kanit: ["Kanit", "sans-serif"],
Sora: ["Sora", "sans-serif"],
Outfit: ["Outfit", "sans-serif"],
body: ["Inter", "sans-serif"],
FontAwesome: ["Font Awesome 6 Pro"],
},
colors: {
ColorDark: "#272838",
ColorBlack: "#0A102F",
ColorBlue: "#3147FF",
ColorOffWhite: "#FAF9F5",
ColorPurple: "#A259FF",
ColorBluePurple: "#7949F6",
ColorYellow: "#FFC900",
ColorViolet: "#4B2AAD",
ColorAtomicTangerine: "#FF9966",
ColorLime: "#C1FF00",
ColorLunarGreen: "#324438",
ColorAlmond: "#EBDECE",
ColorCorn: "#F4B905",
ColorOil: "#221F1A",
ColorPaleGold: "#FFD874",
ColorEggSour: "#FFF4D9",
ColorDenimDarkBlue: "#2D2B92",
ColorCaribbeanGreen: "#15CF92",
ColorMidnightMoss: "#010D09",
ColorHoneySuckle: "#E9FF97",
ColorRed: "#CE2941",
},
},
},
plugins: [],
};