diff options
Diffstat (limited to 'src/distractionless/ui/constants.cljd')
-rw-r--r-- | src/distractionless/ui/constants.cljd | 15 |
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)) |