Skip to content

Commit

Permalink
fix(ui): unverified breakpoints (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston authored Feb 8, 2024
1 parent 3dbcb62 commit 4882feb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/catppuccin-vsc/src/theme/uiColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ export const getUiColors = (
// debug icons
"debugIcon.breakpointForeground": palette.red,
"debugIcon.breakpointDisabledForeground": opacity(palette.red, 0.6),
"debugIcon.breakpointUnverifiedForeground": palette.base,
"debugIcon.breakpointUnverifiedForeground": mix(
palette.red,
palette.surface2,
0.5,
),
"debugIcon.breakpointCurrentStackframeForeground": palette.surface2,
"debugIcon.breakpointStackframeForeground": palette.surface2,
"debugIcon.startForeground": palette.green,
Expand Down

0 comments on commit 4882feb

Please sign in to comment.