-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
48 lines (44 loc) · 1.17 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
const colors = require('tailwindcss/colors')
module.exports = {
mode: "jit",
purge: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
// Build your palette here
transparent: "transparent",
juejinbg: "#f4f5f5",
juejinnav: "#86909c",
juejinactive: "#1e80ff",
"juejin-focus-btn": "#6cbd45",
"juejin-focus-text-blue": "#007fff",
},
},
fontFamily: {
juejin: [
"-apple-system",
"system-ui",
"Segoe UI",
"Roboto",
"Ubuntu",
"Cantarell",
"Noto Sans",
"sans-serif",
"BlinkMacSystemFont",
"Helvetica Neue",
"PingFang SC",
"Hiragino Sans GB",
"Microsoft YaHei",
"Arial",
],
},
},
variants: {
extend: {},
},
plugins: [],
};