hugo-saasify-theme/tailwind.config.js

42 lines
970 B
JavaScript
Raw Permalink Normal View History

2024-11-17 16:31:17 +11:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./layouts/**/*.html"],
2024-11-17 16:31:17 +11:00
theme: {
extend: {
colors: {
primary: {
50: '#eef1fc',
100: '#dde3f9',
200: '#bbc7f3',
300: '#99abec',
400: '#778fe6',
500: '#5573df',
600: '#425ad6',
700: '#3548ab',
800: '#283680',
900: '#1b2456',
},
secondary: {
50: '#faf5ff',
100: '#f3e8ff',
200: '#e9d5ff',
300: '#d8b4fe',
400: '#c084fc',
500: '#a855f7',
600: '#9333ea',
700: '#7e22ce',
800: '#6b21a8',
900: '#581c87',
},
},
2024-11-17 16:31:17 +11:00
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
heading: ['Plus Jakarta Sans', 'sans-serif'],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
2024-12-31 14:49:43 +11:00
}