forked from anamika-20/brainrush-2k24-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.22 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
49
50
51
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
colors: {
"primary-orange": "#FF5722",
headerText: "rgb(9 64 94)",
background: "#610B0C",
bgGray: "#B5B5B5",
subHeaderText: "#ed3d15",
btnColor: "#f06141",
btnColorDark: "#c21111",
inputBgColor: "#cacbd366",
countDownText: "#0b99b3",
navcol: "#F1B860",
purple: { 500: "rgb(24, 13, 238)", 800: "#fff" },
pink: { 500: "#B2194A" },
white: "#fff",
black: "#000",
gray: {
50: "#f9fafb",
100: "#f3f4f6",
200: "#474646",
300: "gray",
400: "#9ca3af",
500: "#6b7280",
600: "#4b5563",
700: "#374151",
900: "#0F172A",
},
yellow: {
300: "#fde047",
500: "#eab308",
},
red: "#ff0000",
},
},
plugins: [],
};