aboutsummaryrefslogtreecommitdiff
path: root/src/distractionless/ui/constants.cljd
diff options
context:
space:
mode:
authorTim <contact@bytim.eu>2025-02-08 11:28:57 +0100
committerTim <contact@bytim.eu>2025-02-08 11:28:57 +0100
commitd69bc395e6cc9ed5e1da6a31835874142fe6800e (patch)
tree324cf18c710721c286890d78310ebe0075499ea4 /src/distractionless/ui/constants.cljd
downloaddistractionless-d69bc395e6cc9ed5e1da6a31835874142fe6800e.tar.xz
distractionless-d69bc395e6cc9ed5e1da6a31835874142fe6800e.zip
Initial commit
Diffstat (limited to 'src/distractionless/ui/constants.cljd')
-rw-r--r--src/distractionless/ui/constants.cljd15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/distractionless/ui/constants.cljd b/src/distractionless/ui/constants.cljd
new file mode 100644
index 0000000..505778f
--- /dev/null
+++ b/src/distractionless/ui/constants.cljd
@@ -0,0 +1,15 @@
+(ns distractionless.ui.constants
+ (:require ["package:flutter/material.dart" :as m]))
+
+(def background-color (m/Color.fromARGB 255 157 166 159))
+(def search-bar-color (m/Color.fromARGB 255 138 150 141))
+(def text-color (m/Color.fromARGB 255 0 0 0))
+
+(def checkbox-active-color (m/Color.fromARGB 255 86 93 86))
+(def checkbox-fill-color (m/Color.fromARGB 255 197 205 199))
+
+(def text-style (m/TextStyle
+ .color text-color))
+(def title-style (m/TextStyle
+ .color text-color
+ .fontSize 30.0))