-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1.03 KB
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,css}"],
theme: {
extend: {
colors: {
"neutral50": "#f9f9f9",
"neutral1000": "#000000",
"neutral100": "#f4f4f4",
"neutral200": "#e4e4e4",
"neutral300": "#d3d3d3",
"neutral400": "#a2a2a2",
"neutral500": "#737373",
"neutral600": "#525252",
'neutral700': "#404040",
"neutral800": "#262626",
"neutral900": "#171717",
"neutral950": '#0a0a0a',
'error': '#8b141a',
"success": "#00be74",
"card-fill": "#16181c",
"searchbar-fill": "#212327",
"button-stroke": "#546a7a",
"bluewash": "#75beef",
"twitterblue-default": "#1d9bf0",
"twitterblue-hover": "#1871ca",
"twitterblue-disabled": "#1e5d87",
},
width: {
'width334': '334px',
},
fontFamily: ['Inter', 'sans-serif'], // Fixed the fontFamily section
}, // Remove the extra comma
},
plugins: [],
};