Created
November 10, 2020 18:35
-
-
Save klebercode/1041b179c3c105bc92ea3139f0e00f8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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