-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (39 loc) · 968 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
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
// darkMode: "class",
theme: {
screens: {
sm: "320px",
mm: "375px",
ml: "425px",
md: "768px",
lg: "1024px",
xl: "1440px",
"2xl": "2560px",
},
extend: {
colors: {
accent: "var(--accent-color)",
accentLow: "var(--accent-low-op)",
navy: "var(--acc-navy)",
lightNavy: "var(--acc-lightNavy)",
lightestNavy: "var(--acc-lightestNavy)",
acSlate: "var(--acc-acSlate)",
lightSlate: "var(--acc-lightSlate)",
lightestSlate: "var(--acc-lightestSlate)",
acWhite: "var(--acc-ac-white)",
grn: "var(--acc-grn)",
t2: "#2e2e3f",
},
// fontFamily: {
// out: ["var(--font-outfit)"],
// },
},
},
plugins: [],
};