forked from Tech-peter4115/smartpay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 934 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (29 loc) · 934 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
/** @type {import('tailwindcss').Config} */
import tsIcon from 'tailwind-book-icon';
const forms = require('@tailwindcss/forms');
const typography = require('@tailwindcss/typography');
const aspectRatio = require('@tailwindcss/aspect-ratio');
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#6C63FF", // soft purple
accent: "#9FFFE0", // aqua/teal
background: {
DEFAULT: "#0F172A", // deep navy fallback
light: "#F9FAFB",
},
gradientFrom: "#A593FF",
gradientTo: "#4263EB",
},
fontFamily: {
sans: ["Geist", "Helvetica Neue", "Helvetica", "Arial", "sans-serif"],
grifter: ["Grifter", "sans-serif"],
aeonik: ["Aeonik", "sans-serif"],
gilroy: ["Gilroy", "sans-serif"],
}
},
},
plugins: [forms, typography, tsIcon, aspectRatio],
};