I'm trying to create app theme with grommet v2. I'm using Form and FormField from grommet components to crate froms. When FormField is active the bottom-border changes colour to default accent-1
and I can't change this border colour.
I have theme.js file which I'm putting to theme property in component. Everything connected to theme works well (buttons colours etc.) I was tried to change accent-1 colour but there's a lack in Documentation about this.
in theme.js
export const theme = {
global: {
colors: {
brand: colors.primary,
text: colors.white
},
focus: {
border: {
color: colors.primary
},
accent: {
1: "#EEEEEE"
},
borderBottom: colors.primary
}
},
}
I expect to change this colour to grey but it's still default colour