-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ballerini theme to hyper terminal
- Loading branch information
Lucas André
committed
Apr 7, 2023
0 parents
commit 6083a6e
Showing
5 changed files
with
2,246 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
backgroundColor: "#261C1E", | ||
cursorColor: "#A45A49", | ||
foregroundColor: "#FFF2E7", | ||
cursorAccentColor: "#2F2325", | ||
selectionColor: "#583c38", | ||
borderColor: "#8E646B", | ||
black: "#EFC764", | ||
green: "#67E480", | ||
red: "#E94554", | ||
comment: "#8E646B", | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const colors = require("./colors"); | ||
|
||
module.exports.decorateConfig = (config) => { | ||
return Object.assign({}, config, { | ||
cursorColor: colors.cursorColor, | ||
cursorAccentColor: colors.cursorAccentColor, | ||
foregroundColor: colors.foregroundColor, | ||
backgroundColor: colors.backgroundColor, | ||
selectionColor: colors.selectionColor, | ||
borderColor: colors.borderColor, | ||
fontWeightBold: "normal", | ||
colors: { | ||
black: colors.cursorColor, | ||
red: colors.red, | ||
green: colors.foregroundColor, | ||
yellow: "#ffca85", | ||
blue: "#61ffca", | ||
magenta: colors.comment, | ||
cyan: colors.foregroundColor, | ||
white: colors.foregroundColor, | ||
lightBlack: "#4d4d4d", | ||
lightRed: "#ffca85", | ||
lightGreen: colors.comment, | ||
lightYellow: "#ffca85", | ||
lightBlue: colors.black, | ||
lightMagenta: colors.comment, | ||
lightCyan: "#61ffca", | ||
lightWhite: colors.foregroundColor, | ||
}, | ||
}); | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "hyper-ballerini-theme", | ||
"version": "1.0.0", | ||
"description": "Utilize o Ballerini Theme no seu Hyper Terminal.", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"styles.css" | ||
], | ||
"xo": { | ||
"esnext": true, | ||
"space": true, | ||
"semicolon": false, | ||
"globals": [ | ||
"document" | ||
] | ||
}, | ||
"repository": "llofyy/hyper-ballerini-theme", | ||
"keywords": [ | ||
"hyper", | ||
"theme", | ||
"ballerini", | ||
"ballerini-theme", | ||
"hyper-theme" | ||
], | ||
"author": "llofyy", | ||
"license": "MIT", | ||
"plugin": { | ||
"title": "Hyper Ballerini Theme", | ||
"caption": "Utilize o Ballerini Theme no seu Hyper Terminal.", | ||
"preview": "https://i.imgur.com/BFKNEbH.png" | ||
}, | ||
"devDependencies": { | ||
"husky": "0.14.3", | ||
"xo": "0.18.2" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# hyper-ballerini-theme | ||
|
||
Tema criado para a utilização no [Hyper](https://hyper.is). |
Oops, something went wrong.