Skip to content

Commit 3b93dcc

Browse files
committed
🎨 Update color palette to match new theme values
Update color palette to match new theme values - Change PURPLE from #c792ea to #e135ff - Change PINK from #ff5874 to #ff00ff - Change CYAN from #7fdbca to #80ffea - Change GREEN from #addb67 to #f1fa8c - Change YELLOW from #ecc48d to #ffff80 - Change GRAY from #637777 to #6272a4 - Change WHITE from #eeffff to #f8f8f2 - Update background color from #14111F to #1e1a2e - Update foreground color from #eeffff to #f8f8f2 - Update orange color from #ffcb8b to #ff6ac1 - Maintain BLUE color at #82AAFF
1 parent 48fa15c commit 3b93dcc

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

scripts/validate_colors.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111
# ANSI color codes matching SilkCircuit theme
1212
class Colors:
13-
PURPLE = '\033[38;2;199;146;234m' # #c792ea
14-
PINK = '\033[38;2;255;88;116m' # #ff5874
15-
CYAN = '\033[38;2;127;219;202m' # #7fdbca
16-
GREEN = '\033[38;2;173;219;103m' # #addb67
17-
YELLOW = '\033[38;2;236;196;141m' # #ecc48d
13+
PURPLE = '\033[38;2;225;53;255m' # #e135ff
14+
PINK = '\033[38;2;255;0;255m' # #ff00ff
15+
CYAN = '\033[38;2;128;255;234m' # #80ffea
16+
GREEN = '\033[38;2;241;250;140m' # #f1fa8c
17+
YELLOW = '\033[38;2;255;255;128m' # #ffff80
1818
BLUE = '\033[38;2;130;170;255m' # #82AAFF
19-
GRAY = '\033[38;2;99;119;119m' # #637777
20-
WHITE = '\033[38;2;238;255;255m' # #eeffff
19+
GRAY = '\033[38;2;98;114;164m' # #6272a4
20+
WHITE = '\033[38;2;248;248;242m' # #f8f8f2
2121
RESET = '\033[0m'
2222
BOLD = '\033[1m'
2323

@@ -35,14 +35,14 @@ class Symbols:
3535

3636
# Core colors that should be present
3737
REQUIRED_COLORS = {
38-
'bg': '#14111F',
39-
'fg': '#eeffff',
40-
'purple': '#c792ea',
41-
'cyan': '#7fdbca',
42-
'green': '#addb67',
38+
'bg': '#1e1a2e',
39+
'fg': '#f8f8f2',
40+
'purple': '#e135ff',
41+
'cyan': '#80ffea',
42+
'green': '#f1fa8c',
4343
'blue': '#82AAFF',
44-
'pink': '#ff5874',
45-
'orange': '#ffcb8b',
44+
'pink': '#ff00ff',
45+
'orange': '#ff6ac1',
4646
}
4747

4848
def print_header():

0 commit comments

Comments
 (0)