Files
SkinbaseNova/tailwind.config.js
2026-02-08 16:43:29 +01:00

40 lines
1.1 KiB
JavaScript

import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
colors: {
nebula: {
50: '#EAF0F7', // almost white blue
100: '#D6E0EE',
200: '#B3C3DD',
300: '#8FA5C9',
400: '#6C87B4',
500: '#4A6A9A',
600: '#35537B',
700: '#233B5A',
800: '#15243A',
900: '#0F1724', // main background
},
deep: '#0F1724',
panel: '#151E2E',
soft: '#7A8CA5',
accent: '#E07A21',
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [forms],
};