forked from resf/resf.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.24 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
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./config/**/*.{js,ts,jsx,tsx}",
"./public/locales/**/*.json",
],
theme: {
extend: {
colors: {
green: {
50: "#b7ead9",
100: "#88dcc0",
200: "#58cea7",
300: "#40c79a",
400: "#28c08e",
500: "#10b981",
600: "#0d9467",
700: "#0a6f4d",
800: "#064a34",
900: "#03251a",
},
blue: {
50: "#e7eef8",
100: "#b7ccea",
200: "#88aadc",
300: "#5887ce",
400: "#4076c7",
500: "#1054b9",
600: "#0d4394",
700: "#0a326f",
800: "#06224a",
900: "#031125",
},
rockyGreen: "#10B981",
rockyBlue: "#1054B9",
},
fontFamily: {
display: ["Red Hat Display", "sans-serif"],
sans: ["Red Hat Text", "sans-serif"],
mono: ["Red Hat Mono", "mono"],
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/line-clamp")
],
};