Skip to content

Commit

Permalink
change header and tabs text colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas André committed Apr 9, 2023
1 parent 8a9f7ed commit 6053421
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
const colors = {
backgroundColor: "#261C1E",
cursorColor: "#A45A49",
foregroundColor: "#FFF2E7",
cursorAccentColor: "#2F2325",
selectionColor: "#583c38",
borderColor: "#8E646B",
black: "#EFC764",
green: "#67E480",
red: "#E94554",
comment: "#8E646B",
pink: "#feafbe",
};

module.exports.decorateConfig = (config) => {
return Object.assign({}, config, {
cursorColor: colors.cursorColor,
Expand Down Expand Up @@ -25,18 +39,15 @@ module.exports.decorateConfig = (config) => {
lightCyan: "#61ffca",
lightWhite: colors.foregroundColor,
},
css: `
${config.css || ""}
* {
-webkit-font-feature-settings: "liga" on, "calt" on, "dlig" on !important;
text-rendering: optimizeLegibility !important;
}
.header_shape, .tab_tab.tab_active, .header_appTitle {
color: ${colors.pink} !important;
}
`,
});
};

const colors = {
backgroundColor: "#261C1E",
cursorColor: "#A45A49",
foregroundColor: "#FFF2E7",
cursorAccentColor: "#2F2325",
selectionColor: "#583c38",
borderColor: "#8E646B",
black: "#EFC764",
green: "#67E480",
red: "#E94554",
comment: "#8E646B",
};
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6053421

Please sign in to comment.