File: /home/xedaptot/hi.naniguide.com/tailwind.config.js
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.jsx',
'./resources/**/*.ts',
'./resources/**/*.tsx',
'./resources/**/*.vue',
'./packages/**/*.blade.php',
'./packages/**/*.js',
'./packages/**/*.jsx',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Sora', ...defaultTheme.fontFamily.sans],
},
colors: {
admin: {
sidebar: '#161529',
main: '#0C0E1F',
border: '#16182A',
text: {
primary: '#FFFFFF',
secondary: '#9FACBE',
},
button: {
from: '#72A3F2',
to: '#3E5DE4',
},
},
primary: {
50: '#eff6ff',
100: '#dbeafe',
200: '#bfdbfe',
300: '#93c5fd',
400: '#60a5fa',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
800: '#1e40af',
900: '#1e3a8a',
950: '#172554',
},
teal: {
50: '#f0fdfa',
100: '#ccfbf1',
200: '#99f6e4',
300: '#5eead4',
400: '#2dd4bf',
500: '#14b8a6',
600: '#0d9488',
700: '#0f766e',
800: '#115e59',
900: '#134e4a',
950: '#042f2e',
},
},
},
},
plugins: [forms, typography],
};