diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-11-09 01:49:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-11-09 01:49:49 (GMT) |
commit | 2df715e74d6600ed0a5688a43f6ecd873957326a (patch) | |
tree | feeb09b609a1fea8ae4441a83107767007ccba37 /themes/Adwaita | |
parent | e5808e7df6eb36ff8e150e57e8691a0b05222844 (diff) |
Loaded GTK CSS extensions from files in a given theme directory.
Diffstat (limited to 'themes/Adwaita')
-rw-r--r-- | themes/Adwaita/Makefile.am | 12 | ||||
-rw-r--r-- | themes/Adwaita/clean.png | bin | 0 -> 741 bytes | |||
-rw-r--r-- | themes/Adwaita/display.css | 198 | ||||
-rw-r--r-- | themes/Adwaita/icons.css | 27 | ||||
-rw-r--r-- | themes/Adwaita/portions.css | 65 | ||||
-rw-r--r-- | themes/Adwaita/redo.png | bin | 0 -> 617 bytes | |||
-rw-r--r-- | themes/Adwaita/undo.png | bin | 0 -> 602 bytes |
7 files changed, 302 insertions, 0 deletions
diff --git a/themes/Adwaita/Makefile.am b/themes/Adwaita/Makefile.am new file mode 100644 index 0000000..9ef46c5 --- /dev/null +++ b/themes/Adwaita/Makefile.am @@ -0,0 +1,12 @@ + +GTK3_CSS = \ + display.css \ + icons.css \ + portions.css \ + clean.png \ + redo.png \ + undo.png + +cssdir = $(datadir)/themes/Adwaita + +css_DATA = $(GTK3_CSS) diff --git a/themes/Adwaita/clean.png b/themes/Adwaita/clean.png Binary files differnew file mode 100644 index 0000000..f8f8c78 --- /dev/null +++ b/themes/Adwaita/clean.png diff --git a/themes/Adwaita/display.css b/themes/Adwaita/display.css new file mode 100644 index 0000000..2368b64 --- /dev/null +++ b/themes/Adwaita/display.css @@ -0,0 +1,198 @@ + +.segment-raw { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-comment { + + color: #37b05b; + + font-style: normal; + font-weight: normal; + +} + +.segment-indication { + + color: #828282; + + font-style: italic; + font-weight: normal; + +} + +.segment-phys-addr-padding { + + color: darker(#7c7c7b); + + font-style: normal; + font-weight: normal; + +} + +.segment-phys-addr { + + color: #7c7c7b; + + font-style: normal; + font-weight: normal; + +} + +.segment-virt-addr-padding { + + color: darker(#7c7c7b); + + font-style: normal; + font-weight: normal; + +} + +.segment-virt-addr { + + color: #7c7c7b; + + font-style: normal; + font-weight: normal; + +} + +.segment-raw-code { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-label { + + color: #ffd200; + + font-style: normal; + font-weight: normal; + +} + +.segment-instruction { + + color: #bebebe; + + font-style: normal; + font-weight: normal; + +} + +.segment-immediate { + + color: #a020f0; + + font-style: normal; + font-weight: normal; + +} + +.segment-register { + + color: #4141d1; + + font-style: normal; + font-weight: normal; + +} + +.segment-punct { + + color: #000; + + font-style: normal; + font-weight: bold; + +} + +.segment-hooks { + + color: #000; + + font-style: normal; + font-weight: bold; + +} + +.segment-signs { + + color: #000; + + font-style: normal; + font-weight: bold; + +} + +.segment-ltgt { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-section { + + color: #c80a0a; + + font-style: normal; + font-weight: normal; + +} + +.segment-segment { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-string { + + color: #cc7e00; + + font-style: normal; + font-weight: normal; + +} + +.segment-var-name { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-keyword { + + color: #000; + + font-style: normal; + font-weight: normal; + +} + +.segment-error { + + color: #ff0000; + + font-style: normal; + font-weight: bold; + +} diff --git a/themes/Adwaita/icons.css b/themes/Adwaita/icons.css new file mode 100644 index 0000000..4986ab2 --- /dev/null +++ b/themes/Adwaita/icons.css @@ -0,0 +1,27 @@ + +#img-undo { + + background-image: url("undo.png"); + background-repeat: space; + + padding-right: 10px; + +} + +#img-redo { + + background-image: url("redo.png"); + background-repeat: space; + + padding-right: 10px; + +} + +#img-clean { + + background-image: url("clean.png"); + background-repeat: space; + + padding-right: 10px; + +} diff --git a/themes/Adwaita/portions.css b/themes/Adwaita/portions.css new file mode 100644 index 0000000..3c5c582 --- /dev/null +++ b/themes/Adwaita/portions.css @@ -0,0 +1,65 @@ + + + +@define-color binportion-raw-color #808080; + +@define-color binportion-code-color #4150ae; + +@define-color binportion-data-color #ae4141; + +@define-color binportion-data-ro-color #aeaa41; + +@define-color binportion-disassembly-error #000000; + + + + +.binportion-raw { + + background-color: @binportion-raw-color; + + border-color: darker(@binportion-raw-color); + border-width: 1px; + border-style: solid; + +} + +.binportion-code { + + background-color: @binportion-code-color; + + border-color: darker(@binportion-code-color); + border-width: 1px; + border-style: solid; + +} + +.binportion-data { + + background-color: @binportion-data-color; + + border-color: darker(@binportion-data-color); + border-width: 1px; + border-style: solid; + +} + +.binportion-data-ro { + + background-color: @binportion-data-ro-color; + + border-color: darker(@binportion-data-ro-color); + border-width: 1px; + border-style: solid; + +} + +.binportion-disassembly-error { + + background-color: @binportion-disassembly-error-color; + + border-color: darker(@binportion-disassembly-error-color); + border-width: 1px; + border-style: solid; + +} diff --git a/themes/Adwaita/redo.png b/themes/Adwaita/redo.png Binary files differnew file mode 100644 index 0000000..9fb3199 --- /dev/null +++ b/themes/Adwaita/redo.png diff --git a/themes/Adwaita/undo.png b/themes/Adwaita/undo.png Binary files differnew file mode 100644 index 0000000..55b8c34 --- /dev/null +++ b/themes/Adwaita/undo.png |