summaryrefslogtreecommitdiff
path: root/gui/style/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'gui/style/style.css')
-rw-r--r--gui/style/style.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/gui/style/style.css b/gui/style/style.css
new file mode 100644
index 0000000..a185c9b
--- /dev/null
+++ b/gui/style/style.css
@@ -0,0 +1,31 @@
+@define-color hostile #e01b24;
+@define-color friendly #33d17a;
+@define-color secret #9141ac;
+
+.disposition-hostile {
+ background-color: mix(shade(@hostile, 1.6), @window_bg_color, 0.5);
+}
+
+:checked.disposition-hostile {
+ background-color: mix(shade(@hostile, 1), @window_bg_color, 0.5);
+}
+
+.disposition-friendly {
+ background-color: mix(shade(@friendly, 1.6), @window_bg_color, 0.5);
+}
+
+:checked.disposition-friendly {
+ background-color: mix(shade(@friendly, 1), @window_bg_color, 0.5);
+}
+
+.disposition-secret {
+ background-color: mix(shade(@secret, 1.6), @window_bg_color, 0.5);
+}
+
+:checked.disposition-secret {
+ background-color: mix(shade(@secret, 1), @window_bg_color, 0.5);
+}
+
+.active-participant {
+ background-color: mix(shade(@accent_bg_color, 1.5), @card_bg_color, 0.5);
+} \ No newline at end of file