-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (44 loc) · 1.05 KB
/
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
42
43
44
45
46
47
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
// backgroundImage: {
// bgimg: "url(/assets/background.png)",
// },
},
fontFamily: {
redHat: "Red Hat Display, sans-serif",
},
screens: {
xs: "320px",
// => @media (min-width: 320px) { ... }
sm: "724px",
// => @media (min-width: 576px) { ... }
md: "1390px",
// => @media (min-width: 960px) { ... }
lg: "1440px",
},
corePlugins: {
preflight: false,
},
colors: {
primary: "#c20639",
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.slate,
green: colors.emerald,
purple: colors.violet,
yellow: colors.amber,
pink: colors.fuchsia,
blue: colors.blue,
red: colors.red,
rose: colors.rose,
warning: "#FFCF00",
charcoal: "#424242",
},
},
plugins: [require("@tailwindcss/typography")],
};