# Generated by Django 5.2.1 on 2026-07-23 06:49

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='sitesettings',
            name='theme_accent',
            field=models.CharField(default='#f59e0b', help_text='Accent / highlight color (CTAs, badges).', max_length=7),
        ),
        migrations.AddField(
            model_name='sitesettings',
            name='theme_preset',
            field=models.CharField(choices=[('ocean', 'Ocean Blue (default)'), ('emerald', 'Emerald Green'), ('sunset', 'Sunset Amber'), ('slate', 'Slate Professional'), ('rose', 'Rose Accent'), ('custom', 'Custom colors')], default='ocean', help_text='Quick color scheme. Choose Custom to use the colors below.', max_length=20),
        ),
        migrations.AddField(
            model_name='sitesettings',
            name='theme_primary',
            field=models.CharField(default='#1e40af', help_text='Primary brand color (buttons, links). Hex e.g. #1e40af', max_length=7),
        ),
        migrations.AddField(
            model_name='sitesettings',
            name='theme_secondary',
            field=models.CharField(default='#0f2557', help_text='Dark navbar / footer color.', max_length=7),
        ),
        migrations.AddField(
            model_name='sitesettings',
            name='theme_success',
            field=models.CharField(default='#059669', help_text='Success / positive status color.', max_length=7),
        ),
    ]
