summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@informatique-libre.be>2022-07-13 13:08:14 +0200
committerSébastien Wilmet <swilmet@informatique-libre.be>2022-07-14 22:45:47 +0200
commit7942b41c7929a86bf81a4f0bddbf11f6de8d82ef (patch)
treef5b811a0adf898535165d1089d193494a0b1e730
parent8992e95adb0d2de7c620947c4a3cecb15a939eae (diff)
downloadgtksourceview-7942b41c7929a86bf81a4f0bddbf11f6de8d82ef.tar.gz
styles: classic and tango: don't use #rgba colors, use palette's colors
(1) Don't use rgba with the alpha channel, I think it needs some bug fixes in the code, see https://gitlab.gnome.org/GNOME/gtksourceview/-/issues/280 "GSV 4: classic and tango style schemes: bug with gutter's background color becoming all white" when several tabs are opened in the text editor. (2) For the color replacements, in tango use the palette's color (it's a darker gray, which is easier to distinguish from the main area white background). For the "Global Settings", have exactly the same colors between classic and tango. (The classic palette lacks the aluminium colors). Fixes https://gitlab.gnome.org/GNOME/gtksourceview/-/issues/280 Closes https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/272
-rw-r--r--data/styles/classic.xml4
-rw-r--r--data/styles/tango.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/data/styles/classic.xml b/data/styles/classic.xml
index 183f5881..0a9e1339 100644
--- a/data/styles/classic.xml
+++ b/data/styles/classic.xml
@@ -42,11 +42,11 @@
<color name="purple" value="#A020F0"/>
<!-- Global Settings -->
- <style name="line-numbers" background="#rgba(0,0,0,0.005)"/>
+ <style name="line-numbers" background="#eeeeec"/>
<style name="current-line" background="#eeeeec"/>
<style name="current-line-number" background="#eeeeec"/>
<style name="draw-spaces" foreground="#babdb6"/>
- <style name="background-pattern" background="#rgba(73,74,71,0.1)"/>
+ <style name="background-pattern" background="#f3f3f3"/>
<!-- Bracket Matching -->
<style name="bracket-match" foreground="white" background="gray"/>
diff --git a/data/styles/tango.xml b/data/styles/tango.xml
index 6b272176..049a54fe 100644
--- a/data/styles/tango.xml
+++ b/data/styles/tango.xml
@@ -54,7 +54,7 @@
<color name="aluminium6" value="#2e3436"/>
<!-- Global Settings -->
- <style name="line-numbers" background="#rgba(18,20,21,0.005)"/>
+ <style name="line-numbers" background="aluminium1"/>
<style name="current-line" background="aluminium1"/>
<style name="current-line-number" background="aluminium1"/>
<style name="draw-spaces" foreground="aluminium3"/>