Skip to content

Commit

Permalink
add ballerini theme to hyper terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas André committed Apr 7, 2023
0 parents commit 6083a6e
Show file tree
Hide file tree
Showing 5 changed files with 2,246 additions and 0 deletions.
12 changes: 12 additions & 0 deletions colors.js
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",
};
31 changes: 31 additions & 0 deletions index.js
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,
},
});
};
37 changes: 37 additions & 0 deletions package.json
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"
}
}
3 changes: 3 additions & 0 deletions readme.md
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).
Loading

0 comments on commit 6083a6e

Please sign in to comment.