-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 807 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
31 lines (30 loc) · 807 Bytes
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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
CabinetGrotesk: ['Cabinet Grotesk', "sans-serif"],
},
colors: {
...colors,
transparent: "transparent",
Mblack: "#343230",
Mred: "#EC6A5C",
},
screens: {
xxs: "375px",
xx: "425px",
ss: "480px",
xs: "576px",
minH650: { raw: "(min-height: 650px) and (max-width: 576px)" },
minW1600: { raw: "(min-width: 1600px)" },
minW1800: { raw: "(min-width: 1800px)" },
minW2000: { raw: "(min-width: 2000px)" },
...defaultTheme.screens,
},
extend: {},
},
plugins: [],
};