-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (35 loc) · 855 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (35 loc) · 855 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
32
33
34
35
36
37
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
purge: [
"./app/**/*.{js,ts,tsx,md,mdx}",
"./remix.config.js",
"./docs/**/*.{md,mdx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
...defaultTheme.colors,
"es-purple": "#AD3CFF",
"es-green": "#05AD60",
"es-blue": "#0B71C3",
"es-yellow": "#FFCA3E",
"es-gray": "#DFDFDF",
},
fontFamily: {
...defaultTheme.fontFamily,
display: ["Dover Sans Display", ...defaultTheme.fontFamily.sans],
sans: ["Dover Sans Text", ...defaultTheme.fontFamily.sans],
},
extend: {
gridTemplateColumns: {
"large": "minmax(10rem, 12rem) minmax(600px, 1080px)",
"standard": "1fr",
},
},
},
variants: {
extend: {},
},
plugins: [],
};