From d69bc395e6cc9ed5e1da6a31835874142fe6800e Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 8 Feb 2025 11:28:57 +0100 Subject: Initial commit --- src/distractionless/ui/constants.cljd | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/distractionless/ui/constants.cljd (limited to 'src/distractionless/ui/constants.cljd') 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)) -- cgit v1.2.3