Skip to content

Instantly share code, notes, and snippets.

@klebercode
Created November 10, 2020 18:35
Show Gist options
  • Save klebercode/1041b179c3c105bc92ea3139f0e00f8a to your computer and use it in GitHub Desktop.
Save klebercode/1041b179c3c105bc92ea3139f0e00f8a to your computer and use it in GitHub Desktop.
const gray = "#8D8391";
const red = "#A1225D";
const orange = "#EEB56F";
const yellow = "#FCED60";
const purple = "#CE85F8";
const pink1 = "#F62599";
const pink2 = "#C45E9D";
const white = "#CABCD0";
const sidebar_background = "#080112";
const background = "#080112";
module.exports = {
name: "pink",
displayName: "Dark Pink Theme",
theme: {
background: {
default: sidebar_background,
success: yellow,
notice: orange,
warning: gray,
danger: red,
surprise: purple,
info: white,
},
foreground: {
default: white,
},
highlight: {},
styles: {
sidebar: {
background: {
default: sidebar_background,
},
},
dialog: {
background: {},
},
sidebarHeader: {
background: {
default: pink1,
},
foreground: {
default: white,
},
},
paneHeader: {
foreground: {
default: white,
},
background: {
default: sidebar_background,
},
},
pane: {
background: {
default: background,
},
foreground: {
default: pink1,
},
highlight: {
default: white,
},
},
transparentOverlay: {
background: {},
},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment