mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:02:04 +03:00
Update base16 themes background states
This commit is contained in:
parent
945d7c52a0
commit
098ad7dbfa
@ -24,31 +24,31 @@ export function createTheme(name: string, isLight: boolean, neutral: ColorToken[
|
||||
base: neutral[1],
|
||||
hovered: withOpacity(neutral[2], blend),
|
||||
active: withOpacity(neutral[2], blend * 1.5),
|
||||
focused: neutral[2],
|
||||
focused: withOpacity(neutral[2], blend),
|
||||
},
|
||||
300: {
|
||||
base: neutral[1],
|
||||
hovered: withOpacity(neutral[2], blend),
|
||||
active: withOpacity(neutral[2], blend * 1.5),
|
||||
focused: neutral[2],
|
||||
focused: withOpacity(neutral[2], blend),
|
||||
},
|
||||
500: {
|
||||
base: neutral[0],
|
||||
hovered: neutral[1],
|
||||
active: neutral[1],
|
||||
focused: neutral[1],
|
||||
hovered: withOpacity(neutral[1], blend),
|
||||
active: withOpacity(neutral[1], blend * 1.5),
|
||||
focused: withOpacity(neutral[1], blend),
|
||||
},
|
||||
on300: {
|
||||
base: neutral[0],
|
||||
hovered: neutral[1],
|
||||
active: neutral[1],
|
||||
focused: neutral[1],
|
||||
hovered: withOpacity(neutral[1], blend),
|
||||
active: withOpacity(neutral[1], blend * 2),
|
||||
focused: withOpacity(neutral[1], blend),
|
||||
},
|
||||
on500: {
|
||||
base: neutral[1],
|
||||
hovered: neutral[3],
|
||||
active: neutral[3],
|
||||
focused: neutral[3],
|
||||
hovered: withOpacity(neutral[2], blend),
|
||||
active: withOpacity(neutral[2], blend * 2),
|
||||
focused: withOpacity(neutral[2], blend),
|
||||
},
|
||||
ok: {
|
||||
base: withOpacity(accent.green, 0.15),
|
||||
|
Loading…
Reference in New Issue
Block a user