Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
xseman committed Dec 6, 2024
1 parent 211736e commit 4f8273e
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 46 deletions.
60 changes: 14 additions & 46 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Simple light theme
# Simple Light Theme

Inspired by [IDEA like light Theme][inspired-by] and [GitLabs][gitlab-theme]
Inspired by [IDEA like light Theme][inspired-by] and [GitLab's][gitlab-theme]
light highlighting syntax.

## Goal

Don't expect any fancy colors.

More colors equals more distraction, we don't want to waste cognitive capacity
More colors equal more distraction; we don't want to waste cognitive capacity
on that. The goal of this theme is to have the minimum meaningful colors.

## Supported languages
## Supported Languages

- TypeScript
- JavaScript
Expand All @@ -22,53 +22,21 @@ on that. The goal of this theme is to have the minimum meaningful colors.
- Markdown
- CSS, SCSS, Less

Others comming soon...
Others coming soon...

## Preview

<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-js-preview-6m4.svg" width="540px">
![JavaScript preview](docs/js-preview.png)
![Go preview](docs/go-preview.png)
![Java preview](docs/java-preview.png)
![HTML preview](docs/html-preview.png)
![CSS preview](docs/css-preview.png)
![Python preview](docs/py-preview.png)
![C++ preview](docs/cpp-preview.png)

<details>
<summary>Go</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-go-preview-6m4.svg" width="540px">
</details>
## Related

<details>
<summary>Java</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-java-preview-6m4.svg" width="540px">
</details>

<details>
<summary>HTML</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-html-preview-6m4.svg" width="540px">
</details>

<details>
<summary>CSS</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-css-preview-6m4.svg" width="540px">
</details>


<details>
<summary>Python</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-py-preview-6m4.svg" width="540px">
</details>

<details>
<summary>C++</summary>
<img src="https://images.vscodethemes.com/xseman.simple-light/simple-light-cpp-preview-6m4.svg" width="540px">
</details>

## Contributors

Thank for feedback:

- @MarcelGeo
- @dderevjanik

## Related projects

[vscode-ideal-theme][inspired-by] – IDEA like light Theme
- [vscode-ideal-theme][inspired-by] – IDEA like light Theme

[inspired-by]: https://github.com/karsany/vscode-ideal-theme
[gitlab-theme]: https://docs.gitlab.com/ee/user/profile/preferences.html#syntax-highlighting-theme
Binary file added docs/cpp-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/css-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/go-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/html-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions docs/images.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

declare -A images=(
["js-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-js-preview-6m4.svg"
["go-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-go-preview-6m4.svg"
["java-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-java-preview-6m4.svg"
["html-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-html-preview-6m4.svg"
["css-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-css-preview-6m4.svg"
["py-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-py-preview-6m4.svg"
["cpp-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-cpp-preview-6m4.svg"
)

for name in "${!images[@]}"; do
url="${images[$name]}"

svg_path="${name}.svg"
png_path="${name}.png"

curl -o "${svg_path}" "${url}"
convert "${svg_path}" -quality 100 "${png_path}"

rm "${svg_path}"
done
Binary file added docs/java-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/js-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/py-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4f8273e

Please sign in to comment.