fix spelling of fuschia :(

This commit is contained in:
sabaimran 2024-08-05 11:50:11 +05:30
parent de1cd8c264
commit e0775446c9
3 changed files with 40 additions and 2 deletions

View file

@ -36,7 +36,7 @@ addSuggestionColorMap(SuggestionType.PopCulture, "red");
addSuggestionColorMap(SuggestionType.Food, "yellow");
addSuggestionColorMap(SuggestionType.Interviewing, "purple");
addSuggestionColorMap(SuggestionType.Home, "green");
addSuggestionColorMap(SuggestionType.Fun, "fuschia");
addSuggestionColorMap(SuggestionType.Fun, "fuchsia");
addSuggestionColorMap(SuggestionType.Code, "purple");
const DEFAULT_COLOR = "orange";

View file

@ -0,0 +1,38 @@
# Generated by Django 5.0.7 on 2024-08-05 06:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("database", "0053_agent_style_color_agent_style_icon"),
]
operations = [
migrations.AlterField(
model_name="agent",
name="style_color",
field=models.CharField(
choices=[
("blue", "Blue"),
("green", "Green"),
("red", "Red"),
("yellow", "Yellow"),
("orange", "Orange"),
("purple", "Purple"),
("pink", "Pink"),
("teal", "Teal"),
("cyan", "Cyan"),
("lime", "Lime"),
("indigo", "Indigo"),
("fuchsia", "Fuchsia"),
("rose", "Rose"),
("sky", "Sky"),
("amber", "Amber"),
("emerald", "Emerald"),
],
default="blue",
max_length=200,
),
),
]

View file

@ -115,7 +115,7 @@ class Agent(BaseModel):
CYAN = "cyan"
LIME = "lime"
INDIGO = "indigo"
FUSCHIA = "fuschia"
FUCHSIA = "fuchsia"
ROSE = "rose"
SKY = "sky"
AMBER = "amber"