this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove yet unused theme-overrider.

+6 -5
+6 -5
client/src/lumina_client/helpers.gleam
··· 28 28 import plinth/javascript/global 29 29 30 30 pub fn get_color_scheme(_model_) -> attribute.Attribute(Msg) { 31 - // Will get overwritten by model later 31 + // Will get overruled by model later 32 32 // For now, just return system default 33 - case dom.get_color_scheme() { 34 - "dark" -> attribute.attribute("data-theme", "lumina-dark") 35 - _ -> attribute.attribute("data-theme", "lumina-light") 36 - } 33 + attribute.none() 34 + // case dom.get_color_scheme() { 35 + // "dark" -> attribute.attribute("data-theme", "lumina-dark") 36 + // _ -> attribute.attribute("data-theme", "lumina-light") 37 + // } 37 38 } 38 39 39 40 /// Under which key the model is stored in local storage.