Skip to content

Commit

Permalink
Correct blue color in lxterminal's VGA preset.
Browse files Browse the repository at this point in the history
VGA is the default lxterminal preset, but its dark blue color has very less contrast with the background. This replaces the original blue color with the one that has better contrast.
  • Loading branch information
lakshayrohila committed Jan 26, 2024
1 parent 9fa947d commit 58bdfef
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions woof-code/rootfs-petbuilds/lxterminal/colors.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
diff -rup lxterminal-0.4.0-orig/src/setting.c lxterminal-0.4.0/src/setting.c
--- lxterminal-0.4.0-orig/src/setting.c 2021-03-12 20:20:26.156393104 +0200
+++ lxterminal-0.4.0/src/setting.c 2021-03-13 20:43:20.653893675 +0200
--- lxterminal-0.4.0-orig/src/setting.c 2024-01-26 11:00:15.817511151 +0530
+++ lxterminal-0.4.0/src/setting.c 2024-01-26 11:46:02.729178961 +0530
@@ -42,7 +42,7 @@ ColorPreset color_presets[] = {
.foreground_color = "#aaaaaa",
.palette = {
"#000000", "#aa0000", "#00aa00", "#aa5500",
- "#0000aa", "#aa00aa", "#00aaaa", "#aaaaaa",
+ "#001fff", "#aa00aa", "#00aaaa", "#aaaaaa",
"#555555", "#ff5555", "#55ff55", "#ffff55",
"#5555ff", "#ff55ff", "#55ffff", "#ffffff"
}
@@ -350,10 +350,12 @@ Setting * load_setting()
/* Initialize nonzero integer values to defaults. */
#if VTE_CHECK_VERSION (0, 38, 0)
Expand Down

0 comments on commit 58bdfef

Please sign in to comment.