forked from deepset-ai/haystack-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 1013 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./docs/**/*.mdx",
],
darkMode: "class", // or 'media' or false
theme: {
extend: {
colors: {
"off-white": "#FEFEFD",
"light-grey-BG": "#F3F3F7",
"dark-blue": "#2B2F55",
"dark-grey": "#9090B2",
"medium-grey": "#A0A0C0",
"light-grey": "#D8D8E5",
"blue-light-theme": "#188BF5",
"yellow-light-theme": "#FFC55C",
"green-light-theme": "#03AF9D",
"red-light-theme": "#D45549",
"blue-dark-theme": "#48A7FF",
"yellow-dark-theme": "#FFD78F",
"green-dark-theme": "#06C2A0",
"red-dark-theme": "#ED6A5E",
"monokai-dark-grey": "#272822",
},
fontFamily: {
sans: ["Greycliff CF", ...defaultTheme.fontFamily.sans],
},
},
},
variants: {
extend: {},
},
plugins: [],
};