generated from 202303-PRM-TR-FEW/capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
43 lines (43 loc) · 1.1 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
/** @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: {
backgroundColor: {
"primary-blue": "#2e8dff",
"primary-white": "#ffffff",
"white-smoke": "#f5f5f5",
"primary-saved": "rgb(251,251,251,0.4)",
"secondary-saved": "rgb(251,251,251,0.3)",
"light-blue": "#cbe1fa",
"light-orange": "#fce7cd",
"light-green": "#e3f0d3",
},
textColor: {
"primary-white": "#ffffff",
"primary-blue": "#2e8dff",
"white-smoke": "#f5f5f5",
"primary-green": "rgb(159, 203, 102)",
"primary-gray": "hsl(0, 0%, 38%)"
},
borderColor: {
"primary-blue": "#2e8dff",
},
boxShadow: {
"light-gray": "0px 0px 20px rgba(0, 0, 0, 0.1)",
},
borderColor: {
"primary-blue": "#2e8dff",
},
fill: {
"white-smoke": "#f5f5f5",
"primary-blue": "#2e8dff",
},
},
},
plugins: [],
};