-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 1009 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 1009 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
34
35
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'custom-chaKy': '#e5c07b',
'custom-coral': '#e06c75',
'custom-dark': '#5c6370',
'custom-error': '#f44747',
'custom-fountainBlue': '#56b6c2',
'custom-green': '#98c379',
'custom-invalid': '#ffffff',
'custom-lightDark': '#7f848e',
'custom-lightWhite': '#abb2bf',
'custom-malibu': '#61afef',
'custom-purple': '#c678dd',
'custom-whiskey': '#d19a66',
'custom-deepRed': '#BE5046',
"custom-custom-green": "#98c379",
'custom-bg': "#282c34"
},
fontFamily: {
customInter: ["Inter", "sans-serif"],
customRoboto: ["Roboto", "sans-serif"],
customMono: ["JetBrains Mono Variable", "sans-serif"],
customEyeCatcher: ["Berkshire Swash", "sans-serif"],
}
},
},
plugins: [],
}