Skip to content

Commit

Permalink
Update color palettes
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodelahoz committed Apr 6, 2024
1 parent 0c7b92d commit 025e354
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 23 deletions.
7 changes: 4 additions & 3 deletions src/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,10 @@ <h2 class="configuration-title">Appearance</h2>
<option value="default">Default</option>
<option value="black_and_white">Black and white</option>
<option value="cyberpunk">Cyberpunk</option>
<option value="orange">Orange</option>
<option value="neon_night">Neon night</option>
<option value="deep_sea">Deep Sea</option>
<option value="angry_orange">Angry Orange</option>
<option value="octo">Octo</option>
<option value="arctic_horizon">Arctic Horizon</option>
<option value="harbor_mist">Harbor Mist</option>
<option value="autumn">Autumn</option>
</select>
</label>
Expand Down
46 changes: 26 additions & 20 deletions src/scripts/constants/color-palettes.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export const colorPalettes = {
default: [
'#222222',
'#33FF66',
'#FF33A6',
'#99B381',
'#D5FFE0',
'#009826',
],
black_and_white: [
'#000000',
Expand All @@ -14,31 +14,37 @@ export const colorPalettes = {
cyberpunk: [
'#100019',
'#FFE1FF',
'#E700EA',
'#F48BEC'
'#EF46E0',
'#D326C0'
],
orange: [
angry_orange: [
'#F0907C',
'#962912',
'#F46900',
'#FAA400',
],
deep_sea: [
'#012E40',
'#026773',
'#3CA6A6',
'#F2E3D5',
octo: [
'#996600',
'#FFCC00',
'#FF6600',
'#662200',
],
autumn: [
'#3D3E3E',
'#A8A250',
'#BE8560',
'#A35642',
arctic_horizon: [
'#113152',
'#ACD5FF',
'#FFFFFF',
'#59789C',
],
neon_night: [
'#222222',
'#FFFF33',
'#33FFFF',
'#FF33FF',
autumn: [
'#262626',
'#AFA460',
'#B36C4D',
'#7B4039',
],
harbor_mist: [
'#334155',
'#CBD5E1',
'#F1F5F9',
'#64748B',
]
}

0 comments on commit 025e354

Please sign in to comment.