Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the "codely-theme" extension will be documented in this f

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [1.0.0] - 2026-01-28

- docs: improve theme compatibility documentation and linking
- chore!: bump minimum supported VS Code version to 1.60 (September 2021) for consistent theming

## [0.0.1] - 2020-03-04

- Initial release
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
<h1 align="center">🎨 Codely Visual Studio Code Theme</h1>
<h1 align="center">
<🎨> Codely Theme for VS Code
</h1>
<p align="center">
<img src="preview-python.png" alt="Codely VsCode Theme">
<small><b>Happy Hacking!</b></small><br>
A modern, good-looking, productivity-increaser theme for <b>Visual Studio Code</b>
</p>
<a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/Codely-OS-green.svg?style=flat-square" alt="Codely Open Source projects"/></a>
<a href="https://codely.com/cursos"><img src="https://img.shields.io/badge/Codely-Pro-black.svg?style=flat-square" alt="Codely Pro courses"/></a>
</p>
<p align="center">
<img src="images/preview-python.png" alt="Codely Theme preview" />
A modern, good-looking, productivity-increaser theme for Visual Studio and compatible IDEs.<br><br>
<a href="https://github.com/CodelyTV/vscode-theme/stargazers">Stars are welcome 😊</a>
</p>

## 🤝 Compatible editors

- Visual Studio Code
- Cursor
- VSCodium
- GitHub Codespaces
- CodeSandbox
- StackBlitz
- Any other editor supporting VS Code themes

## 🔗 Related links

- [VS Marketplace theme](https://marketplace.visualstudio.com/items?itemName=codely.codely-theme)
- [Codely Theme for JetBrains IDEs](https://github.com/CodelyTV/jetbrains-theme)

<p align="right">
<small>Happy hacking!</small><br>
<sub>🐢 💨 (Turbotuga™, <a href="https://codely.com">Codely</a>’s mascot).</sub>
</p>
Binary file modified images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
79 changes: 41 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
{
"name": "codely-theme",
"displayName": "Codely Theme",
"description": "A modern, good-looking, productivity-increaser theme for Visual Studio Code",
"version": "0.0.1",
"scripts": {
"build": "vsce package"
},
"publisher": "Codely",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Themes"
],
"keywords": ["dark"],
"contributors": [
{
"email": "[email protected]",
"name": "Royer Guerero",
"url": "https://github.com/royerguerrero"
}
],
"contributes": {
"themes": [
{
"label": "Codely Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.codely-theme-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/CodelyTV/vscode-theme.git"
},
"devDependencies": {
"vsce": "^1.85.1"
"name": "codely-theme",
"displayName": "Codely Theme",
"description": "A modern, good-looking, productivity-increaser theme for Visual Studio and compatible IDEs.",
"version": "1.0.0",
"scripts": {
"build": "vsce package"
},
"publisher": "Codely",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Themes"
],
"keywords": [
"dark",
"codely"
],
"contributors": [
{
"email": "[email protected]",
"name": "Royer Guerero",
"url": "https://github.com/royerguerrero"
}
],
"contributes": {
"themes": [
{
"label": "Codely Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.codely-theme-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/CodelyTV/vscode-theme.git"
},
"devDependencies": {
"vsce": "^1.108.2"
}
}