HEX
Server: nginx/1.28.3
System: Linux lightweb-s1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User: dawonefr-98 (1071)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/dnlightw-124/dn.lightweb.kr/node_modules/aero-page/tailwind.config.js
const colors = require('tailwindcss/colors')
import { createThemes } from 'tw-colors'

const config = {
    content: [
        './index.html',
        './src/**/*.{vue,js,ts,jsx,tsx}',
        'node_modules/preline/dist/*.js'],

    darkMode: ['class'],

    theme: {
        container: {
            center: true,
            padding: {
                DEFAULT: '1rem',
                sm: '2rem',
                lg: '4rem',
                xl: '5rem',
                '2xl': '6rem',
            },
        },

        fontFamily: {
            body: ['REM', 'sans-serif'],
        },

        extend: {
            colors: {
                primary: {
                    ...colors.orange,
                    DEFAULT: '#fa681b',
                },
            },

            zIndex: {
                60: '60',
                70: '70',
            },
        },
    },

    plugins: [
        require('preline/plugin'),
        require('@tailwindcss/forms'),
        require('@tailwindcss/typography'),
        createThemes(
            {
                light: {
                    default: colors.zinc,
                },

                dark: {
                    default: {
                        50: '#09090b',
                        100: '#18181b',
                        200: '#27272a',
                        300: '#3f3f46',
                        400: '#52525b',
                        500: '#71717a',
                        600: '#a1a1aa',
                        700: '#d4d4d8',
                        800: '#e4e4e7',
                        900: '#f4f4f5',
                        950: '#fafafa',
                    },
                },
            },
            {
                defaultTheme: 'light',
            },
        ),
    ],
}
export default config