-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
gridTemplateColumns: {
autoFit: "repeat(auto-fit, minmax(160px, 1fr))",
smallAutoFit: "repeat(auto-fit, minmax(127px, 127px))",
},
fontFamily: {
Helvetica: ["Yantramanav", "sans-serif", "Poppins"],
Inter: ["Inter", "sans-serif", "Poppins"],
},
colors: {
_black_bg: "#171717",
lightGrey: "#707281",
placeholderColor: "#B2B3BD",
Super_lightGrey: "#CFD0D5",
_blue: "#1D43FF",
_sidenav_bg: "#FAFBFD",
_sidenav_color: "#414357",
_light_white: "#a7a7a7",
_white: "#ffffffd9",
_sidenav_active_color: "#1D43FF",
_sidenav_hover_bg: "#1d43ff1a",
_chat_color: "#36464E",
_dark_blue: "#000000",
_prompt_chip_bg: "rgba(29, 67, 255, 0.1)",
_helptool_bg: "#F7FAFC",
_dark: "#000000",
_switch_bg: "rgba(33, 150, 243, 0.1);",
_welcometext_lightblue: "#A0A1AB",
_genre_chip_bg: "#2b2b2b",
_show_title: "#e2e2e2",
},
fontSize: {
smm: "11px",
xxs: "8px",
},
},
},
plugins: [],
};