-
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.
* it's working * update * add presets * replace version of FiraCode * update presets logic * add popup * chore * table v2 * table v3 FINAL FINAL * dialogs * updates * updates * fixes
- Loading branch information
Showing
28 changed files
with
3,097 additions
and
1,324 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,9 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
|
||
indent_size = 2 | ||
indent_style = space |
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,45 @@ | ||
--- | ||
|
||
env: | ||
es6: true | ||
|
||
rules: | ||
arrow-parens: | ||
- 2 | ||
- as-needed | ||
semi: | ||
- 2 | ||
- always | ||
class-methods-use-this: 0 | ||
comma-dangle: | ||
- 2 | ||
- always-multiline | ||
no-console: | ||
- 2 | ||
no-unused-expressions: 0 | ||
no-param-reassign: | ||
- 2 | ||
- props: false | ||
no-useless-escape: 0 | ||
func-names: 0 | ||
quotes: | ||
- 2 | ||
- double | ||
- allowTemplateLiterals: true | ||
no-underscore-dangle: 0 | ||
object-curly-newline: 0 | ||
function-paren-newline: 0 | ||
operator-linebreak: | ||
- 2 | ||
- after | ||
no-unused-vars: | ||
- 2 | ||
- argsIgnorePattern: "^_" | ||
|
||
globals: | ||
document: true | ||
requestAnimationFrame: true | ||
window: true | ||
self: true | ||
fetch: true | ||
Headers: true |
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,2 @@ | ||
.env | ||
node_modules |
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,20 @@ | ||
{ | ||
"parser": "babel", | ||
"printWidth": 100, | ||
"trailingComma": "all", | ||
"arrowParens": "avoid", | ||
"overrides": [ | ||
{ | ||
"files": ".html", | ||
"options": { | ||
"parser": "html" | ||
} | ||
}, | ||
{ | ||
"files": ".css", | ||
"options": { | ||
"parser": "css" | ||
} | ||
} | ||
] | ||
} |
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,13 @@ | ||
{ | ||
"rules": { | ||
"rule-empty-line-before": [ | ||
"always-multi-line", | ||
{ | ||
"ignore": "first-nested" | ||
} | ||
], | ||
"color-function-notation": null, | ||
"no-descending-specificity": null, | ||
"selector-class-pattern": null | ||
} | ||
} |
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
![Terminal.css Preview](./terminal-css.png) | ||
|
||
# ➡️ [Check Terminal.css website](https://panr.github.io/terminal-css/) | ||
# ➡️ [Check Terminal.css website](https://panr.github.io/terminal-css/) | ||
|
||
[Terminal](https://github.com/panr/hugo-theme-terminal) theme turned out to be an unexpected success. But not everyone wanted to switch to Hugo to be able to use it. | ||
|
||
That's why I created **Terminal.css**. A stupid simple, custom set of semantic styles derived from the theme, that you always wanted. | ||
|
||
## Presets | ||
|
||
Terminal.css comes with a collection of [presets](./presets.json). I've kickstarted the project with only a few of them, but that's not enough. If you want to contribute to the project and already have an idea for a beautiful set of colors, you are in the right place. | ||
|
||
1. Go to the [Terminal.css website](https://panr.github.io/terminal-css/) and set your color scheme | ||
2. Copy it as JSON | ||
3. [Add it](./presets.json) to the collection via Pull Request |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.