Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham authored Nov 7, 2024
2 parents f9b7926 + 890381f commit d995513
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
runHook preInstall
mkdir -p $out
cd packages/catppuccin-vsc
cp -rL LICENSE README.md package.json dist/ themes/ $out/
cp -rL LICENSE README.md package.json icon.png dist/ themes/ $out/
runHook postInstall
'';
};
Expand Down
2 changes: 1 addition & 1 deletion packages/catppuccin-vsc/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const packagePath = `catppuccin-${shortName}-${packageJson.version}.vsix`;

await createVSIX({ dependencies: false, packagePath });

// restore the original package.json when building for ADS
// restore the original package.json after building ADS
if (buildForADS) await updatePackageJson();
// the upload step in the CI required the path to the vsix file
if (process.env.GITHUB_ACTIONS) setOutput("vsixPath", packagePath);
4 changes: 4 additions & 0 deletions packages/catppuccin-vsc/src/theme/uiColors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ export const getUiColors = (
"editor.selectionHighlightBackground": opacity(palette.overlay2, 0.2),
"editor.selectionHighlightBorder": opacity(palette.overlay2, 0.2),
"editor.wordHighlightBackground": opacity(palette.overlay2, 0.2),
"editor.wordHighlightStrongBackground": opacity(
palette.blue,
isLatte ? 0.15 : 0.2,
),

"editorBracketMatch.background": opacity(palette.overlay2, 0.1),
"editorBracketMatch.border": palette.overlay2,
Expand Down

0 comments on commit d995513

Please sign in to comment.