summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-09-15 20:30:37 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-09-15 20:30:37 (GMT)
commit74642fbdeefaec21885e5fb6cad432e3e3b47cdb (patch)
tree11c5a34a3cdae86feefe6a35052b0384480fee75 /themes
parentce8c1719963657aeaf963650183e46979cab0d68 (diff)
Defined a GTK3 style for binary portions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@404 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'themes')
-rw-r--r--themes/Makefile.am7
-rw-r--r--themes/portions.css65
2 files changed, 72 insertions, 0 deletions
diff --git a/themes/Makefile.am b/themes/Makefile.am
new file mode 100644
index 0000000..c790aad
--- /dev/null
+++ b/themes/Makefile.am
@@ -0,0 +1,7 @@
+
+GTK3_CSS = \
+ portions.css
+
+cssdir = $(datadir)/themes
+
+css_DATA = $(GTK3_CSS)
diff --git a/themes/portions.css b/themes/portions.css
new file mode 100644
index 0000000..3c5c582
--- /dev/null
+++ b/themes/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;
+
+}