blob: f08b24b2ac0fc9abd2cb0eb03cb764ee49bc3153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(ns distractionless.ui.constants
(:require ["package:flutter/material.dart" :as m]))
(def background-color (m/Color.fromARGB 255 208 255 254))
(def text-color (m/Color.fromARGB 255 55 55 55))
(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))
|