-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
mode: "jit",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
pink: {
rubine: "#D41D6C",
},
blue: {
slate: "#D1DEFF",
cornflower: "#8FB3FF",
},
background: {
light: "#EFF2F3",
dark: "#181818",
},
placeholder: "#d9d9d9",
},
dropShadow: {
boxes: [
"1px 1px 3px rgba(255, 255, 255, 0.20)",
"1px 1px 30px rgba(99, 117, 124, 0.2)",
],
},
fontFamily: {
PlusJakartaSansBold: ["PlusJakartaSans-Bold", "sans-serif", "Arial"],
PlusJakartaSansExtraBold: [
"PlusJakartaSans-ExtraBold",
"sans-serif",
"Arial",
],
RobotoFlex: ["Roboto Flex", "Arial"],
Raleway: ["Raleway-SemiBold", "Arial"],
},
fontSize: {
md: ["17px", "26px"],
},
},
},
plugins: [],
};