summaryrefslogtreecommitdiff
path: root/themes/Solarized/segments.css
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-11-09 13:18:35 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-11-09 13:18:35 (GMT)
commitc301f7e77eaca632a491b5b4417c8e4b9dce2570 (patch)
tree501ccdd583e35ccad4f3a0592f2fb1b0870e0d5f /themes/Solarized/segments.css
parent459b345d69532825f21bdcd3e4f92009b0a046dc (diff)
Introduced the first features of a hexadecimal viewer.
Diffstat (limited to 'themes/Solarized/segments.css')
-rw-r--r--themes/Solarized/segments.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/themes/Solarized/segments.css b/themes/Solarized/segments.css
new file mode 100644
index 0000000..0391466
--- /dev/null
+++ b/themes/Solarized/segments.css
@@ -0,0 +1,48 @@
+
+/* Assembly views */
+
+.segment-label {
+
+ color: @blue;
+
+}
+
+.segment-register {
+
+ color: @violet;
+
+}
+
+.segment-immediate {
+
+ color: @orange;
+
+}
+
+.segment-string {
+
+ color: @yellow;
+
+}
+
+.segment-keyword {
+
+ font-style: italic;
+
+}
+
+.segment-punct {
+
+ color: @cyan;
+
+}
+
+.segment-hooks,
+.segment-ltgt,
+.segment-signs {
+
+ color: @cyan;
+
+ font-weight: bold;
+
+}