Delete spaces in rgba colors
This commit is contained in:
parent
6b6c9f41ea
commit
3a7178300f
1 changed files with 2 additions and 2 deletions
|
@ -10,13 +10,13 @@ const initialState = ImmutableMap();
|
|||
const modes = ImmutableMap({
|
||||
light: ImmutableMap({
|
||||
'primary-text-color': '#000000',
|
||||
'primary-text-color-faint': 'rgba(0, 0, 0, 0.6)',
|
||||
'primary-text-color-faint': 'rgba(0,0,0,0.6)',
|
||||
'background-color': '#f2f2f2',
|
||||
'foreground-color': '#ffffff',
|
||||
}),
|
||||
dark: ImmutableMap({
|
||||
'primary-text-color': '#ffffff',
|
||||
'primary-text-color-faint': 'rgba(255, 255, 255, 0.6)',
|
||||
'primary-text-color-faint': 'rgba(255,255,255,0.6)',
|
||||
'background-color': '#333333',
|
||||
'foreground-color': '#222222',
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue