-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
92 lines (91 loc) · 2.21 KB
/
Copy pathtailwind.config.js
File metadata and controls
92 lines (91 loc) · 2.21 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* eslint-disable @typescript-eslint/no-var-requires */
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
heading: "Work Sans",
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
"nav-bar": "#F0F2F6",
black: "#0E1825",
"brand-primary": "#226DFF",
manatee: {
50: "#F6F8FB",
100: "#F1F3F7",
200: "#E6E9EF",
300: "#BFC5CF",
400: "#A8AFBD",
500: "#8D96A7",
600: "#6B7587",
700: "#4E5868",
800: "#2F3948",
900: "#0E1825",
},
ultramarine: {
50: "#E2F2FF",
100: "#C1E5FF",
500: "#3994FF",
600: "#226DFF",
700: "#1952D1",
800: "#113491",
900: "#0E204F",
},
},
transitionProperty: {
width: "width",
},
animation: {
"spin-fast": "spin 0.5s linear infinite",
},
spacing: {
18: "4.5rem",
},
minWidth: (theme) => ({
...theme("spacing"),
}),
maxWidth: (theme) => ({
...theme("spacing"),
}),
boxShadow: {
"object-search-divider": "-2px 0px 10px 0px #BBB",
"scroll-hint": "inset 0px -11px 7px -11px rgb(0 0 0 / 0.3)",
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#226DFF",
"primary-content": "#FFF",
secondary: "#D926A9",
accent: "#1FB2A6",
neutral: "#B8BCC6",
"base-100": "#FFFFFF",
"base-content": "#0E1825",
info: "#C1E5FF",
success: "#33BD6E",
"success-content": "#FFF",
warning: "#FBBD23",
error: "#F43636",
"error-content": "#FFF",
disabled: "#226DFF",
"--height-btn": "5rem",
},
},
],
},
plugins: [
require("daisyui"),
require("tailwindcss-radix")(),
require("@headlessui/tailwindcss"),
],
};