Skip to content

Commit

Permalink
feat: add styling dark and light
Browse files Browse the repository at this point in the history
  • Loading branch information
edmolima committed Nov 21, 2024
0 parents commit 32b2b43
Show file tree
Hide file tree
Showing 16 changed files with 5,818 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: edmolima
Empty file added .github/issue_template.md
Empty file.
Empty file.
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Publish Package

on:
push:
tags:
- v*

jobs:
publish-npm:
permissions:
id-token: write
contents: write

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Use Node.js v20
uses: actions/setup-node@v3
with:
node-version: 20
always-auth: true
registry-url: https://registry.npmjs.org/
cache: npm

- name: Install Dependencies
run: npm install

- name: Generate Changelog
run: npx changelogithub --no-group
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to NPM
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Install vsce
run: npm i -g vsce

- name: Publish to VSCE
run: npx vsce publish --pat ${{ secrets.VSCE_TOKEN }}
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules
9 changes: 9 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
10 changes: 10 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
node_modules/**
.git/**
.github/**
images/**
**/*.map
**/*.ts
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2024 Alucard Nocturne Theme

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
95 changes: 95 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# Alucard Theme for VS Code

<div align="center">

![Alucard Preview](./assets/alucard.gif)

A sophisticated VS Code theme inspired by Castlevania's aesthetic, featuring both dark and light variants.

[![Version](https://img.shields.io/visual-studio-marketplace/v/Edmo.alucard-nocturne)](https://marketplace.visualstudio.com/items?itemName=Edmo.alucard-nocturne)
[![Downloads](https://img.shields.io/visual-studio-marketplace/d/Edmo.alucard-nocturne)](https://marketplace.visualstudio.com/items?itemName=Edmo.alucard-nocturne)
[![Rating](https://img.shields.io/visual-studio-marketplace/r/Edmo.alucard-nocturne)](https://marketplace.visualstudio.com/items?itemName=Edmo.alucard-nocturne)

</div>
<p align="center">
<sub><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Font | <a href="https://input.djr.com/">Input Mono</a><br>
&nbsp;File Icons | <a href="https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc-icons">Catppuccin</a><br>
Product Icons | <a href="https://github.com/antfu/vscode-icons-carbon">Carbon</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br></sub>
</p>

## πŸ§›β€β™‚οΈ Installation

1. Open VS Code
2. Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
3. Search for "Alucard Nocturne"
4. Click Install
5. Press Ctrl+K Ctrl+T / Cmd+K Cmd+T to open the theme selector
6. Select either "Alucard Nocturne Theme (Dark)" or "Alucard Nocturne Theme (Light)"

## Match with System

```jsonc
// .vscode/setting.json
{
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "Alucard Nocturne Theme (Light)",
"workbench.preferredDarkColorTheme": "Alucard Nocturne Theme (Dark)",
}
```

## 🎨 Color Palette

### Dark Theme


### Light Theme

## πŸ“Έ Screenshots

### Dark Theme
![Dark Theme Preview](./assets/nocturne-preview.png)

### Light Theme
![Light Theme Preview](./assets/nocturne-light-preview.png)

## ✨ Features

- Two carefully crafted theme variants (Dark and Light)
- Thoughtful color selections for optimal readability
- Semantic highlighting support
- Custom UI elements theming
- Consistent color palette across all elements
- Carefully selected contrasts for accessibility

## 🀝 Contributing

1. Fork this repository
2. Create a new branch for your changes
3. Make your changes
4. Submit a pull request

## πŸ‘₯ Team

This theme is maintained by:

| [![Edmo Lima](https://github.com/edmolima.png?size=100)](https://github.com/edmolima) |
| ------------------------------------------------------------------------------------- |
| [Edmo Lima](https://github.com/edmolima) |

## πŸ“ Changelog

The changelog is available on the release page in each theme's repository.

## πŸ“„ License

[MIT License](./LICENSE) Β© Alucard Nocturne Theme

---

<div align="center">

**πŸ§›β€β™‚οΈ Happy Coding! πŸ¦‡**

[Report an Issue](https://github.com/edmolima/alucard/issues) Β· [Request a Feature](https://github.com/edmolima/alucard/issues)

</div>
Binary file added assets/alucard.gif
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 assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 32b2b43

Please sign in to comment.