Description
Is your feature request related to a problem? Please describe.
I spent many hours trying to figure out how to build upon the styling for Components I saw in the documentation. For example, https://theme-ui.com/components/radio . It was non-trivial to replicate what I saw on the docs site.
Describe the solution you'd like
Point to a .json object that will result in the same style shown in the docs. Extending on the radio example,
Describe alternatives you've considered
In the "base" theme, replicate the exact .json object(s) that will result in what I see on the website, so that I can build off of what is there. Another alternative explored below.
Additional context
I recognize that through theme-ui, I'm free to define whatever styles I want from scratch. Actually, I liked what I saw on the docs, but just wanted to change some colors. I tried to do so, but got ugly results because I didn't have the structure just right.
In other words, a naive developer (me) thought that this should be enough
radio: {
color: 'green',
bg: 'transparent'
}
But in reality, we needed to do something like this (which took me a frustratingly long time to find):
radio: {
color: 'green',
bg: 'transparent',
border: 'thin',
borderRadius: 'circle',
...{
'input:focus ~ &': {
bg: 'transparent',
border: 'thick',
},
'> path': {
fill: 'primary',
},
'input:checked ~ &': {
'> path': {
fill: 'primary',
},
},
},
}
Much time could have been saved, had the above .json object been provided in the docs, so devs have a clearer idea of what the starting point actually is.
Another alternative is if I could have done this, that would also have been helpful. Is there a way to do this?
radio: {
...themeUI.base.theme.forms.radio,
color: 'green',
bg: 'transparent'
}
Activity