-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (46 loc) · 1.01 KB
/
Copy pathtailwind.config.js
File metadata and controls
49 lines (46 loc) · 1.01 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
37
38
39
40
41
42
43
44
45
46
47
48
49
import { createThemes } from "tw-colors";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
inter: ["'Inter'", "sans-serif"],
gelasio: ["'Gelasio'", "serif"],
},
fontSize: {
sm: "12px",
base: "14px",
xl: "16px",
"2xl": "20px",
"3xl": "28px",
"4xl": "38px",
"5xl": "50px",
},
},
},
plugins: [
createThemes({
light: {
white: "#FFFFFF",
black: "#242424",
grey: "#F3F3F3",
"dark-grey": "#6B6B6B",
red: "#FF4E4E",
transparent: "transparent",
twitter: "#1DA1F2",
purple: "#8B46FF",
},
dark: {
white: "#242424",
black: "#F3F3F3",
grey: "#2A2A2A",
"dark-grey": "#E7E7E7",
red: "#991F1F",
transparent: "transparent",
twitter: "#0E71A8",
purple: "#582CBE",
},
}),
],
};