-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 836 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 836 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}",
"./src/*.{js,ts,jsx,tsx}",
"./public/static/*.js"],
theme: {
extend: {
fontFamily: {
sans: ["Helvetica Neue", "Arial", "sans-serif"],
},
boxShadow: {
"shadow-up":
"0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06)",
},
colors: {
chat: {
background: "#ffffff",
bubble: "#f7f8fa",
text: "#000000",
input: "#ffffff",
shadow: "#ecf0f1",
placeholder: "#787878",
button: "#fbfbfc",
settings: "#f7f8fa",
border: "#eef0f1",
apply: "#1b1c3b",
helpertext: "#8a8a8a",
},
},
},
},
plugins: [],
};