Skip to content

Commit

Permalink
Add "Hermes Orange" theme to ThemeFactory
Browse files Browse the repository at this point in the history
Introduced a new theme with ID 108 named "Hermes Orange" with the color code "#E85827". This theme is added to the list of themes right after the existing "Prussian Blue" theme.
  • Loading branch information
EdiWang committed Dec 25, 2024
1 parent c5bafbf commit b1106c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Moonglade.Theme/ThemeFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public static IEnumerable<BlogThemeEntity> GetSystemThemes()
CreateTheme(104, "Outlook Blue", "#035AA6"),
CreateTheme(105, "Metal Blue", "#4E5967"),
CreateTheme(106, "Mars Green", "#008C8C"),
CreateTheme(107, "Prussian Blue", "#003153")
CreateTheme(107, "Prussian Blue", "#003153"),
CreateTheme(108, "Hermes Orange", "#E85827")
};
}

Expand Down

0 comments on commit b1106c7

Please sign in to comment.