-
Notifications
You must be signed in to change notification settings - Fork 51
/
tailwind.config.cjs
48 lines (48 loc) · 1.19 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
sans: "Fira Mono",
},
extend: {
colors: {
primary: "#858AE3",
white: "#F4F7F5",
gray: "#A7A2A9",
dark: "#1E1E1F",
darkSecondary: "#28282A",
branch: "#099104",
cmd: "#e100ff",
add: "#4024e0",
pull: "#4024e0",
commit: "#1a5ba5",
merge: "#118d7c",
push: "#8d54e1",
default: "#7e1aa5",
},
typography: (theme) => ({
DEFAULT: {
css: {
// code: {
// backgroundColor: theme('colors.gray.100'),
// padding: '0.2rem 0.4rem',
// borderRadius: theme('borderRadius.md'),
// },
// pre: {
// backgroundColor: theme('colors.gray.900'),
// color: theme('colors.gray.100'),
// padding: '1rem',
// borderRadius: theme('borderRadius.md'),
// overflowX: 'auto',
// },
},
},
}),
},
},
plugins: [
require("@tailwindcss/line-clamp")
]
};