diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-13 23:19:09 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-13 23:19:09 +0200 |
| commit | 695ece2c35491a509c70ef710bd0419d67b8fd0f (patch) | |
| tree | c2ac6aac664aff004207a36c376ba46c679c2b09 /res/style-dark.css | |
| parent | 37e22df7fb942dbe6dbcc39ed161ee9336e8f0d9 (diff) | |
| download | turns-695ece2c35491a509c70ef710bd0419d67b8fd0f.tar.xz turns-695ece2c35491a509c70ef710bd0419d67b8fd0f.zip | |
app: add basic dark theme support
Diffstat (limited to 'res/style-dark.css')
| -rw-r--r-- | res/style-dark.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/res/style-dark.css b/res/style-dark.css new file mode 100644 index 0000000..3cb2cf7 --- /dev/null +++ b/res/style-dark.css @@ -0,0 +1,15 @@ +button.disposition-hostile { + background-color: shade(@orange_5, 1.6); +} + +button:checked.disposition-hostile { + background-color: shade(@orange_5, 1.8); +} + +button.disposition-friendly { + background-color: shade(@green_5, 1.6); +} + +button:checked.disposition-friendly { + background-color: shade(@green_5, 1.8); +}
\ No newline at end of file |
