blob: 505778f2f895380f237c0a58f9621d5610d2be51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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))
|