Skip to content

Commit

Permalink
fix: text color selection mode (close #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thuan Pham committed Feb 12, 2023
1 parent 2749a34 commit 2680a57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/rose-pine-dawn.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist

const hintsCss =
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #575279; background: #faf4ed; background-color: #faf4ed";
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #575279 !important; background: #faf4ed; background-color: #faf4ed";

api.Hints.style(hintsCss);
api.Hints.style(hintsCss, "text");
Expand Down
2 changes: 1 addition & 1 deletion dist/rose-pine-moon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist

const hintsCss =
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #e0def4; background: #232136; background-color: #232136";
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #e0def4 !important; background: #232136; background-color: #232136";

api.Hints.style(hintsCss);
api.Hints.style(hintsCss, "text");
Expand Down
2 changes: 1 addition & 1 deletion dist/rose-pine.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist

const hintsCss =
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #e0def4; background: #191724; background-color: #191724";
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: #e0def4 !important; background: #191724; background-color: #191724";

api.Hints.style(hintsCss);
api.Hints.style(hintsCss, "text");
Expand Down
2 changes: 1 addition & 1 deletion template.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// blurb: $description

const hintsCss =
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: $text; background: $base; background-color: $base";
"font-size: 13pt; font-family: 'JetBrains Mono NL', 'Cascadia Code', 'Helvetica Neue', Helvetica, Arial, sans-serif; border: 0px; color: $text !important; background: $base; background-color: $base";

api.Hints.style(hintsCss);
api.Hints.style(hintsCss, "text");
Expand Down

0 comments on commit 2680a57

Please sign in to comment.