Skip to content

Commit

Permalink
feat: add inverted black and white color palette option
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodelahoz committed Nov 17, 2024
1 parent e617f69 commit e2417da
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ <h3 class="configuration-subtitle">Color settings</h3>
<option value="custom" disabled>Custom</option>
<optgroup label="Default palettes">
<option value="default">Default</option>
<option value="black_and_white">Black and white</option>
<option value="black_and_white">Black and White</option>
<option value="black_and_white_inverted">Black and White (Inverted)</option>
<option value="cyberpunk">Cyberpunk</option>
<option value="angry_orange">Angry Orange</option>
<option value="octo">Octo</option>
Expand Down
6 changes: 6 additions & 0 deletions src/scripts/constants/color-palettes.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ export const colorPalettes = {
'#A1A1AA',
'#71717A',
],
black_and_white_inverted: [
'#A1A1AA',
'#18181B',
'#F4F4F5',
'#71717A',
],
cyberpunk: [
'#100019',
'#FFE1FF',
Expand Down

0 comments on commit e2417da

Please sign in to comment.