-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 989 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (39 loc) · 989 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
38
39
40
// tailwind.config.js
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
primary: "#0073E5",
"primary-50": "#E4F2FF",
secondary: "#151515",
success: "#40C000",
error: "#FF4D4D",
validation: "#FFE5E5",
white: colors.white,
light: "#E4F1FF",
gray: colors.neutral,
dark: "#333333",
black: colors.black,
green: colors.green,
yellow: colors.amber,
red: colors.red,
},
extend: {
fontSize: {
xxs: ".65rem",
},
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
},
height: {
editor: "calc(-9rem + 100vh)",
"audio-editor": "calc(-6.5rem + 100vh)",
},
},
},
plugins: [require("@tailwindcss/typography")],
};