Custom Color Schemes for Stipple Apps #85
Replies: 3 comments 4 replies
-
Thanks @TheCedarPrince |
Beta Was this translation helpful? Give feedback.
-
Yes, Stipple already uses a theme called 'stipple-blue' which is the only one we have :) So themes are part of the original architecture but more dedicated work is needed to actually support them and build them (ie needs integration with Quasar themes, support for night mode, etc). |
Beta Was this translation helpful? Give feedback.
-
I have a related issue which I thought I'd mention here. Currently I am trying to change the styles of my headings, and it seems a little cumbersome at the moment. Basically, it seems one needs to use !important for changes of font size? Is there any easy way to use one's custom css file instead of the one supplied by Stipple (stipplecore.css), or to overwrite the definitions in it? UPDATE (IN JULY): The following works conveniently enough for my current purposes: function theme1()
[link(href = "$folder/style.css", rel = "stylesheet"), ""]
end
push!(Stipple.Layout.THEMES, theme1) with style.css: .stipple-core h1 {
font-size: 3em;
line-height: 1em;
} |
Beta Was this translation helpful? Give feedback.
-
I would love the Genie Framework to provide themes for users!
For example, I have to following code:
Which produces the following image:
Rather than having to prepend a style manually in CSS, it would be nice to have something like this:
Where the
color_scheme
is something that Genie could provide with default colors for a given widget, in this case theelement
,:table
.This gets rid of someone having to know CSS and instead could work with nice themes quickly.
Any thoughts on this?
Beta Was this translation helpful? Give feedback.
All reactions