Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Andromeda theme #11

Merged
merged 1 commit into from
Jan 9, 2024
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Scripts are extracted and modified from [Shiki](https://github.com/shikijs/shiki
- Less than 100 columns if possible
- Link to source in the last line, for example, `# From` https://poignant.guide/book/chapter-5.html`
5. Generate a [personal access token](https://github.com/settings/tokens?type=beta), keep the default, no extra permission is needed. This token is used to query public information from GitHub API and avoid rate limits.
6. Create a `.env` file and past your generated token into the file like so:
6. Create a `.env` file and paste your generated token into the file like so:
```bash
GITHUB_TOKEN=your-personal-access-token
```
Expand All @@ -34,7 +34,7 @@ GITHUB_TOKEN=your-personal-access-token
2. Install the dependencies with `pnpm i`
3. Add theme source and metadata to [`sources-themes.ts`](./sources-themes.ts)
4. Generate a [personal access token](https://github.com/settings/tokens?type=beta), keep the default, no extra permission is needed. This token is used to query public information from GitHub API and avoid rate limits.
5. Create a `.env` file and past your generated token into the file like so:
5. Create a `.env` file and paste your generated token into the file like so:
```bash
GITHUB_TOKEN=your-personal-access-token
```
Expand Down
26 changes: 26 additions & 0 deletions packages/tm-themes/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,32 @@ forth below.

The following files/folders contain third party software:

=========================================================================================================
Files: andromeeda.json
License: https://raw.githubusercontent.com/EliverLara/Andromeda/master/LICENSE.md
SPDX: MIT
---------------------------------------------------------------------------------------------------------
Copyright (c) 2017 <[email protected]>

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.

=========================================================================================================
Files: catppuccin-frappe.json, catppuccin-latte.json, catppuccin-macchiato.json, catppuccin-mocha.json
License: https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE
Expand Down
1 change: 1 addition & 0 deletions packages/tm-themes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import { themes } from 'tm-themes'

| Name | ID | Source | License | File Size |
| ---- | -- | ------ | ------- | --------- |
| Andromeeda | `andromeeda` | [EliverLara/Andromeda](https://github.com/EliverLara/Andromeda/blob/a05c86aec15c98d371e46eefbb2d1838b563f73c/themes/Andromeda-color-theme.json) | [MIT](https://raw.githubusercontent.com/EliverLara/Andromeda/master/LICENSE.md) | 8.57 kB |
| Aurora X | `aurora-x` | [marqu3ss/Aurora-X](https://github.com/marqu3ss/Aurora-X/blob/118727efadf48872adcd81f6c00be580097d6592/themes/Aurora%20X-color-theme.json) | | 13.28 kB |
| Catppuccin Frappé | `catppuccin-frappe` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/7a6de5035c08bce3568de9c85a47932ab4c971b1/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 43.25 kB |
| Catppuccin Macchiato | `catppuccin-macchiato` | [catppuccin/vscode](https://github.com/catppuccin/vscode/blob/7a6de5035c08bce3568de9c85a47932ab4c971b1/packages/catppuccin-vsc/package.json) | [MIT](https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE) | 43.26 kB |
Expand Down
11 changes: 11 additions & 0 deletions packages/tm-themes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
*/

export const themes = [
{
byteSize: 8772,
displayName: 'Andromeeda',
lastUpdate: '2023-04-13T21:00:26Z',
license: 'MIT',
licenseUrl: 'https://raw.githubusercontent.com/EliverLara/Andromeda/master/LICENSE.md',
name: 'andromeeda',
sha: 'a05c86aec15c98d371e46eefbb2d1838b563f73c',
source: 'https://github.com/EliverLara/Andromeda/blob/a05c86aec15c98d371e46eefbb2d1838b563f73c/themes/Andromeda-color-theme.json',
type: 'dark',
},
{
byteSize: 13599,
displayName: 'Aurora X',
Expand Down
Loading