├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── tests.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── @types └── termcolors │ ├── index.d.ts │ └── termcolors.ts ├── LICENSE ├── README.md ├── commitlint.config.js ├── docs ├── API.md ├── CLI.md ├── CREATING_PORTS.md ├── PUBLISHING_PORTS.md ├── SHOP.md └── assets │ ├── example-func-info.png │ ├── undraw_book_lover.svg │ ├── undraw_order_delivered.svg │ ├── undraw_science.svg │ ├── undraw_to_the_moon.svg │ └── undraw_web_shopping_re_owap.svg ├── jest.config.ts ├── package.json ├── packages ├── alacritty │ ├── README.md │ └── aura-theme.toml ├── chrome │ ├── README.md │ └── store │ │ ├── 128x128.png │ │ ├── chrome-aura-theme.zip │ │ ├── preview.png │ │ └── small-tile-preview.png ├── code-sandbox │ ├── README.md │ └── themes │ │ ├── aura-dark-soft-text.json │ │ ├── aura-dark.json │ │ ├── aura-soft-dark-soft-text.json │ │ └── aura-soft-dark.json ├── color-palettes │ ├── README.md │ ├── aura-colors.css │ └── aura-colors.sass ├── fig │ ├── README.md │ └── aura-dark.json ├── firefox │ ├── README.md │ └── manifest.json ├── gnome-terminal │ ├── README.md │ └── aura-theme.dconf ├── hyper │ ├── README.md │ ├── index.js │ └── package.json ├── icue │ ├── README.md │ └── profiles │ │ └── joaopealves │ │ └── aura-theme-iCue.zip ├── insomnia │ ├── README.md │ ├── index.js │ ├── logo.png │ └── package.json ├── iterm │ ├── README.md │ ├── aura-theme-soft.itermcolors │ └── aura-theme.itermcolors ├── kitty │ ├── README.md │ └── aura-theme.conf ├── konsole │ ├── README.md │ ├── aura-theme-soft.colorscheme │ └── aura-theme.colorscheme ├── mattermost │ ├── README.md │ └── aura-dark.json ├── neovim │ ├── README.md │ ├── colors │ │ ├── aura-dark-soft-text.lua │ │ ├── aura-dark.lua │ │ ├── aura-soft-dark-soft-text.lua │ │ └── aura-soft-dark.lua │ └── lua │ │ └── aura-theme │ │ ├── common │ │ ├── color.lua │ │ ├── core.lua │ │ ├── hsluv.lua │ │ ├── palette.lua │ │ └── util.lua │ │ ├── groups │ │ ├── editor.lua │ │ ├── languages.lua │ │ └── treesitter.lua │ │ └── init.lua ├── ngenuity │ ├── README.md │ └── profiles │ │ └── joaopealves │ │ └── Aura Theme.hxp.zip ├── plasma │ ├── README.md │ ├── aura-theme-soft.colors │ └── aura-theme.colors ├── rxvt-unicode │ ├── .Xresources │ └── README.md ├── slack │ └── README.md ├── sublime-text │ ├── README.md │ ├── aura-theme-soft.tmTheme │ └── aura-theme.tmTheme ├── sway │ ├── README.md │ └── aura-theme.conf ├── tabby │ ├── README.md │ └── tabby-colors.yaml ├── telegram │ ├── README.md │ └── theme.tdesktop-theme.zip ├── terminal-app │ ├── README.md │ └── aura-theme.terminal ├── termux │ ├── README.md │ └── aura-theme.properties ├── tilix │ ├── README.md │ └── aura-theme.json ├── vivaldi │ ├── README.md │ └── store │ │ └── vivaldi-aura-theme.zip ├── vscode │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── logo.png │ ├── package.json │ └── themes │ │ ├── aura-dark-color-theme.json │ │ ├── aura-dark-soft-text-color-theme.json │ │ ├── aura-soft-dark-color-theme.json │ │ └── aura-soft-dark-soft-text-color-theme.json ├── wallpapers │ ├── README.md │ ├── aura-theme-wallpapers.zip │ └── aura-theme-wallpapers │ │ ├── type-0 │ │ ├── 0 - Aura #1 - 1400x900.png │ │ ├── 0 - Aura #1 - 1920x1080.png │ │ ├── 0 - Aura #1 - 2560x1080.png │ │ ├── 0 - Aura #1 - 2560x1600.png │ │ ├── 0 - Aura #1 - Mobile - 1080x1920.png │ │ ├── 0 - Aura #1 - Mobile - 1080x2560.png │ │ ├── 0 - Aura #1 - Mobile - 1242x2688.png │ │ └── 0 - Aura #1 - Mobile - 1600x2560.png │ │ ├── type-1 │ │ ├── 1 - Aura #1 - 1400x900.png │ │ ├── 1 - Aura #1 - 1920x1080.png │ │ ├── 1 - Aura #1 - 2560x1080.png │ │ ├── 1 - Aura #1 - 2560x1600.png │ │ ├── 1 - Aura #1 - Mobile - 1080x1920.png │ │ ├── 1 - Aura #1 - Mobile - 1080x2560.png │ │ ├── 1 - Aura #1 - Mobile - 1242x2688.png │ │ ├── 1 - Aura #1 - Mobile - 1600x2560.png │ │ ├── 1 - Aura #2 - 1400x900.png │ │ ├── 1 - Aura #2 - 1920x1080.png │ │ ├── 1 - Aura #2 - 2560x1080.png │ │ ├── 1 - Aura #2 - 2560x1600.png │ │ ├── 1 - Aura #2 - Mobile - 1080x1920.png │ │ ├── 1 - Aura #2 - Mobile - 1080x2560.png │ │ ├── 1 - Aura #2 - Mobile - 1242x2688.png │ │ └── 1 - Aura #2 - Mobile - 1600x2560.png │ │ ├── type-2 │ │ ├── 2 - Aura #1 - 1400x900.png │ │ ├── 2 - Aura #1 - 1920x1080.png │ │ ├── 2 - Aura #1 - 2560x1080.png │ │ ├── 2 - Aura #1 - 2560x1600.png │ │ ├── 2 - Aura #1 - Mobile - 1080x1920.png │ │ ├── 2 - Aura #1 - Mobile - 1080x2560.png │ │ ├── 2 - Aura #1 - Mobile - 1242x2688.png │ │ ├── 2 - Aura #1 - Mobile - 1600x2560.png │ │ ├── 2 - Aura #2 - 1400x900.png │ │ ├── 2 - Aura #2 - 1920x1080.png │ │ ├── 2 - Aura #2 - 2560x1080.png │ │ ├── 2 - Aura #2 - 2560x1600.png │ │ ├── 2 - Aura #2 - Mobile - 1080x1920.png │ │ ├── 2 - Aura #2 - Mobile - 1080x2560.png │ │ ├── 2 - Aura #2 - Mobile - 1242x2688.png │ │ └── 2 - Aura #2 - Mobile - 1600x2560.png │ │ ├── type-3 │ │ ├── 3 - Aura #1 - 1400x900.png │ │ ├── 3 - Aura #1 - 1920x1080.png │ │ ├── 3 - Aura #1 - 2560x1080.png │ │ ├── 3 - Aura #1 - 2560x1600.png │ │ ├── 3 - Aura #1 - Mobile - 1080x1920.png │ │ ├── 3 - Aura #1 - Mobile - 1080x2560.png │ │ ├── 3 - Aura #1 - Mobile - 1242x2688.png │ │ └── 3 - Aura #1 - Mobile - 1600x2560.png │ │ └── type-4 │ │ ├── 4 - Aura #1 - 1400x900.png │ │ ├── 4 - Aura #1 - 1920x1080.png │ │ ├── 4 - Aura #1 - 2560x1080.png │ │ ├── 4 - Aura #1 - 2560x1600.png │ │ ├── 4 - Aura #1 - Mobile - 1080x1920.png │ │ ├── 4 - Aura #1 - Mobile - 1080x2560.png │ │ ├── 4 - Aura #1 - Mobile - 1242x2688.png │ │ └── 4 - Aura #1 - Mobile - 1600x2560.png ├── warp │ ├── README.md │ └── aura-theme.yaml ├── waybar │ ├── README.md │ └── style.css ├── windows-terminal │ ├── README.md │ ├── aura-theme-soft-dark-soft-text.json │ ├── aura-theme-soft-dark.json │ ├── aura-theme-soft-text.json │ └── aura-theme.json └── zed │ ├── README.md │ ├── extension.toml │ └── themes │ ├── aura-dark-soft-text.json │ ├── aura-dark.json │ ├── aura-soft-dark-soft-text.json │ └── aura-soft-dark.json ├── prettier.config.js ├── src ├── boot.ts ├── core │ ├── @types │ │ ├── index.d.ts │ │ └── services │ │ │ ├── color.ts │ │ │ ├── debug.ts │ │ │ ├── file-system.ts │ │ │ ├── function-composition.ts │ │ │ ├── shell.ts │ │ │ └── template-engine.ts │ ├── cli │ │ ├── aura.ts │ │ ├── commands │ │ │ ├── build │ │ │ │ └── index.ts │ │ │ ├── dev │ │ │ │ └── index.ts │ │ │ ├── help │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── make │ │ │ │ ├── index.ts │ │ │ │ └── port.ts │ │ │ └── tokenize │ │ │ │ └── index.ts │ │ ├── constants │ │ │ └── index.ts │ │ ├── stdin.ts │ │ ├── templates │ │ │ └── port │ │ │ │ ├── README.md │ │ │ │ └── index.template │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── log.ts │ │ │ └── pad.ts │ ├── colors │ │ ├── index.ts │ │ └── schemes │ │ │ ├── common.ts │ │ │ ├── dark.ts │ │ │ ├── index.ts │ │ │ └── soft-dark.ts │ ├── index.ts │ └── modules │ │ ├── colors │ │ ├── index.ts │ │ ├── scheme-to-rgb.ts │ │ ├── scheme-to-terminal-rgb.ts │ │ └── tokenize.ts │ │ ├── compiler │ │ ├── copy-extra-files.ts │ │ ├── create-from-in-memory-port.ts │ │ ├── create-in-memory-port.ts │ │ ├── create-port-file.ts │ │ ├── create-port.ts │ │ ├── create-readme │ │ │ ├── index.ts │ │ │ └── join-replacements.ts │ │ └── index.ts │ │ ├── file-system │ │ ├── get-all-files.ts │ │ ├── index.ts │ │ ├── unlink.ts │ │ └── zip-file.ts │ │ ├── index.ts │ │ └── loader │ │ ├── allowed-ports.ts │ │ └── index.ts ├── ports │ ├── alacritty │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.toml │ ├── chrome │ │ ├── extra │ │ │ └── store │ │ │ │ ├── 128x128.png │ │ │ │ ├── preview.png │ │ │ │ └── small-tile-preview.png │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── manifest.json │ ├── code-sandbox │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── theme.json │ ├── color-palettes │ │ ├── index.ts │ │ ├── palettes.ts │ │ └── templates │ │ │ ├── README.md │ │ │ ├── aura-colors.css │ │ │ └── aura-colors.sass │ ├── fig │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-dark.json │ ├── firefox │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── manifest.json │ ├── gnome-terminal │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.dconf │ ├── hyper │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── icue │ │ ├── extra │ │ │ └── profiles │ │ │ │ └── joaopealves │ │ │ │ └── aura-theme-iCue.zip │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── insomnia │ │ ├── extra │ │ │ └── logo.png │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── iterm │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.itermcolors │ ├── kitty │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── konsole │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.colorscheme │ ├── mattermost │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-dark.json │ ├── neovim │ │ ├── colorSchemes.ts │ │ ├── extra │ │ │ ├── colors │ │ │ │ ├── aura-dark-soft-text.lua │ │ │ │ ├── aura-dark.lua │ │ │ │ ├── aura-soft-dark-soft-text.lua │ │ │ │ └── aura-soft-dark.lua │ │ │ └── lua │ │ │ │ └── aura-theme │ │ │ │ ├── common │ │ │ │ ├── color.lua │ │ │ │ ├── core.lua │ │ │ │ ├── hsluv.lua │ │ │ │ ├── palette.lua │ │ │ │ └── util.lua │ │ │ │ ├── groups │ │ │ │ ├── editor.lua │ │ │ │ ├── languages.lua │ │ │ │ └── treesitter.lua │ │ │ │ └── init.lua │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── ngenuity │ │ ├── extra │ │ │ └── profiles │ │ │ │ └── joaopealves │ │ │ │ └── Aura Theme.hxp.zip │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── plasma │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.colors │ ├── rxvt-unicode │ │ ├── index.ts │ │ └── templates │ │ │ ├── .Xresources │ │ │ └── README.md │ ├── slack │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── sublime-text │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.tmTheme │ ├── sway │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.conf │ ├── tabby │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── tabby-colors.yaml │ ├── telegram │ │ ├── extra │ │ │ └── tiled.png │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── colors.tdesktop-theme │ ├── terminal-app │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── termux │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.properties │ ├── tilix │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.json │ ├── vivaldi │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── settings.json │ ├── vscode │ │ ├── extra │ │ │ ├── .vscode │ │ │ │ └── launch.json │ │ │ ├── .vscodeignore │ │ │ ├── CHANGELOG.md │ │ │ └── logo.png │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── theme.json │ ├── wallpapers │ │ ├── extra │ │ │ └── aura-theme-wallpapers │ │ │ │ ├── type-0 │ │ │ │ ├── 0 - Aura #1 - 1400x900.png │ │ │ │ ├── 0 - Aura #1 - 1920x1080.png │ │ │ │ ├── 0 - Aura #1 - 2560x1080.png │ │ │ │ ├── 0 - Aura #1 - 2560x1600.png │ │ │ │ ├── 0 - Aura #1 - Mobile - 1080x1920.png │ │ │ │ ├── 0 - Aura #1 - Mobile - 1080x2560.png │ │ │ │ ├── 0 - Aura #1 - Mobile - 1242x2688.png │ │ │ │ └── 0 - Aura #1 - Mobile - 1600x2560.png │ │ │ │ ├── type-1 │ │ │ │ ├── 1 - Aura #1 - 1400x900.png │ │ │ │ ├── 1 - Aura #1 - 1920x1080.png │ │ │ │ ├── 1 - Aura #1 - 2560x1080.png │ │ │ │ ├── 1 - Aura #1 - 2560x1600.png │ │ │ │ ├── 1 - Aura #1 - Mobile - 1080x1920.png │ │ │ │ ├── 1 - Aura #1 - Mobile - 1080x2560.png │ │ │ │ ├── 1 - Aura #1 - Mobile - 1242x2688.png │ │ │ │ ├── 1 - Aura #1 - Mobile - 1600x2560.png │ │ │ │ ├── 1 - Aura #2 - 1400x900.png │ │ │ │ ├── 1 - Aura #2 - 1920x1080.png │ │ │ │ ├── 1 - Aura #2 - 2560x1080.png │ │ │ │ ├── 1 - Aura #2 - 2560x1600.png │ │ │ │ ├── 1 - Aura #2 - Mobile - 1080x1920.png │ │ │ │ ├── 1 - Aura #2 - Mobile - 1080x2560.png │ │ │ │ ├── 1 - Aura #2 - Mobile - 1242x2688.png │ │ │ │ └── 1 - Aura #2 - Mobile - 1600x2560.png │ │ │ │ ├── type-2 │ │ │ │ ├── 2 - Aura #1 - 1400x900.png │ │ │ │ ├── 2 - Aura #1 - 1920x1080.png │ │ │ │ ├── 2 - Aura #1 - 2560x1080.png │ │ │ │ ├── 2 - Aura #1 - 2560x1600.png │ │ │ │ ├── 2 - Aura #1 - Mobile - 1080x1920.png │ │ │ │ ├── 2 - Aura #1 - Mobile - 1080x2560.png │ │ │ │ ├── 2 - Aura #1 - Mobile - 1242x2688.png │ │ │ │ ├── 2 - Aura #1 - Mobile - 1600x2560.png │ │ │ │ ├── 2 - Aura #2 - 1400x900.png │ │ │ │ ├── 2 - Aura #2 - 1920x1080.png │ │ │ │ ├── 2 - Aura #2 - 2560x1080.png │ │ │ │ ├── 2 - Aura #2 - 2560x1600.png │ │ │ │ ├── 2 - Aura #2 - Mobile - 1080x1920.png │ │ │ │ ├── 2 - Aura #2 - Mobile - 1080x2560.png │ │ │ │ ├── 2 - Aura #2 - Mobile - 1242x2688.png │ │ │ │ └── 2 - Aura #2 - Mobile - 1600x2560.png │ │ │ │ ├── type-3 │ │ │ │ ├── 3 - Aura #1 - 1400x900.png │ │ │ │ ├── 3 - Aura #1 - 1920x1080.png │ │ │ │ ├── 3 - Aura #1 - 2560x1080.png │ │ │ │ ├── 3 - Aura #1 - 2560x1600.png │ │ │ │ ├── 3 - Aura #1 - Mobile - 1080x1920.png │ │ │ │ ├── 3 - Aura #1 - Mobile - 1080x2560.png │ │ │ │ ├── 3 - Aura #1 - Mobile - 1242x2688.png │ │ │ │ └── 3 - Aura #1 - Mobile - 1600x2560.png │ │ │ │ └── type-4 │ │ │ │ ├── 4 - Aura #1 - 1400x900.png │ │ │ │ ├── 4 - Aura #1 - 1920x1080.png │ │ │ │ ├── 4 - Aura #1 - 2560x1080.png │ │ │ │ ├── 4 - Aura #1 - 2560x1600.png │ │ │ │ ├── 4 - Aura #1 - Mobile - 1080x1920.png │ │ │ │ ├── 4 - Aura #1 - Mobile - 1080x2560.png │ │ │ │ ├── 4 - Aura #1 - Mobile - 1242x2688.png │ │ │ │ └── 4 - Aura #1 - Mobile - 1600x2560.png │ │ ├── index.ts │ │ └── templates │ │ │ └── README.md │ ├── warp │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.yaml │ ├── waybar │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── style.css │ ├── windows-terminal │ │ ├── index.ts │ │ └── templates │ │ │ ├── README.md │ │ │ └── aura-theme.json │ └── zed │ │ ├── index.ts │ │ └── templates │ │ ├── README.md │ │ ├── extension.toml │ │ └── theme.json ├── services │ ├── colors │ │ ├── features │ │ │ ├── color-adjustments │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── polished │ │ │ │ │ └── index.ts │ │ │ ├── color-convertion │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── color-convert │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── terminal-convertion │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ └── termcolors │ │ │ │ └── index.ts │ │ └── index.ts │ ├── debug │ │ ├── index.ts │ │ └── providers │ │ │ └── debug │ │ │ └── index.ts │ ├── file-system │ │ ├── features │ │ │ ├── copy-files │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── cpy │ │ │ │ │ └── index.ts │ │ │ ├── file-status │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── fs │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── read-dir │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── fs │ │ │ │ │ └── index.ts │ │ │ ├── read-file │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── fs │ │ │ │ │ └── index.ts │ │ │ ├── unlink │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── rimraf │ │ │ │ │ └── index.ts │ │ │ ├── write-file │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ └── fs-extra │ │ │ │ │ └── index.ts │ │ │ └── zip │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ ├── adm-zip │ │ │ │ └── index.ts │ │ │ │ └── zip-a-folder │ │ │ │ └── index.ts │ │ └── index.ts │ ├── function-composition │ │ ├── index.ts │ │ └── providers │ │ │ └── ramda │ │ │ └── index.ts │ ├── index.ts │ ├── shell │ │ ├── index.ts │ │ └── providers │ │ │ └── child-process │ │ │ └── index.ts │ └── template-engine │ │ ├── index.ts │ │ └── providers │ │ └── mustache │ │ └── index.ts └── shared │ ├── constants │ ├── emojis.ts │ ├── files.ts │ ├── folders.ts │ ├── index.ts │ ├── info.ts │ └── is.ts │ ├── templates │ └── readmes │ │ ├── author-tbody.md │ │ ├── author-thead.md │ │ ├── basic-heading.md │ │ ├── done.md │ │ ├── footer.md │ │ └── npm-heading.md │ └── utils │ ├── capitalize-first-letter.ts │ ├── get-path-by-platform-in-dev.ts │ ├── index.ts │ ├── to-camel-case.ts │ └── to-port-name.ts ├── tests ├── fixtures │ ├── README.md │ ├── color-scheme.ts │ └── template.json └── unit │ ├── core │ └── modules │ │ ├── colors │ │ ├── scheme-to-rgb.spec.ts │ │ ├── scheme-to-terminal-rgb.spec.ts │ │ └── tokenize.spec.ts │ │ └── compiler │ │ ├── create-in-memory-port.spec.ts │ │ └── create-readme.spec.ts │ └── utils │ ├── capitalize-first-letter.spec.ts │ ├── to-camel-case.spec.ts │ └── to-port-name.spec.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | /*.js 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /@types/termcolors/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/@types/termcolors/index.d.ts -------------------------------------------------------------------------------- /@types/termcolors/termcolors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/@types/termcolors/termcolors.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']} 2 | -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/CLI.md -------------------------------------------------------------------------------- /docs/CREATING_PORTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/CREATING_PORTS.md -------------------------------------------------------------------------------- /docs/PUBLISHING_PORTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/PUBLISHING_PORTS.md -------------------------------------------------------------------------------- /docs/SHOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/SHOP.md -------------------------------------------------------------------------------- /docs/assets/example-func-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/example-func-info.png -------------------------------------------------------------------------------- /docs/assets/undraw_book_lover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/undraw_book_lover.svg -------------------------------------------------------------------------------- /docs/assets/undraw_order_delivered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/undraw_order_delivered.svg -------------------------------------------------------------------------------- /docs/assets/undraw_science.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/undraw_science.svg -------------------------------------------------------------------------------- /docs/assets/undraw_to_the_moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/undraw_to_the_moon.svg -------------------------------------------------------------------------------- /docs/assets/undraw_web_shopping_re_owap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/docs/assets/undraw_web_shopping_re_owap.svg -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/package.json -------------------------------------------------------------------------------- /packages/alacritty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/alacritty/README.md -------------------------------------------------------------------------------- /packages/alacritty/aura-theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/alacritty/aura-theme.toml -------------------------------------------------------------------------------- /packages/chrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/chrome/README.md -------------------------------------------------------------------------------- /packages/chrome/store/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/chrome/store/128x128.png -------------------------------------------------------------------------------- /packages/chrome/store/chrome-aura-theme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/chrome/store/chrome-aura-theme.zip -------------------------------------------------------------------------------- /packages/chrome/store/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/chrome/store/preview.png -------------------------------------------------------------------------------- /packages/chrome/store/small-tile-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/chrome/store/small-tile-preview.png -------------------------------------------------------------------------------- /packages/code-sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/code-sandbox/README.md -------------------------------------------------------------------------------- /packages/code-sandbox/themes/aura-dark-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/code-sandbox/themes/aura-dark-soft-text.json -------------------------------------------------------------------------------- /packages/code-sandbox/themes/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/code-sandbox/themes/aura-dark.json -------------------------------------------------------------------------------- /packages/code-sandbox/themes/aura-soft-dark-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/code-sandbox/themes/aura-soft-dark-soft-text.json -------------------------------------------------------------------------------- /packages/code-sandbox/themes/aura-soft-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/code-sandbox/themes/aura-soft-dark.json -------------------------------------------------------------------------------- /packages/color-palettes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/color-palettes/README.md -------------------------------------------------------------------------------- /packages/color-palettes/aura-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/color-palettes/aura-colors.css -------------------------------------------------------------------------------- /packages/color-palettes/aura-colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/color-palettes/aura-colors.sass -------------------------------------------------------------------------------- /packages/fig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/fig/README.md -------------------------------------------------------------------------------- /packages/fig/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/fig/aura-dark.json -------------------------------------------------------------------------------- /packages/firefox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/firefox/README.md -------------------------------------------------------------------------------- /packages/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/firefox/manifest.json -------------------------------------------------------------------------------- /packages/gnome-terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/gnome-terminal/README.md -------------------------------------------------------------------------------- /packages/gnome-terminal/aura-theme.dconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/gnome-terminal/aura-theme.dconf -------------------------------------------------------------------------------- /packages/hyper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/hyper/README.md -------------------------------------------------------------------------------- /packages/hyper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/hyper/index.js -------------------------------------------------------------------------------- /packages/hyper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/hyper/package.json -------------------------------------------------------------------------------- /packages/icue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/icue/README.md -------------------------------------------------------------------------------- /packages/icue/profiles/joaopealves/aura-theme-iCue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/icue/profiles/joaopealves/aura-theme-iCue.zip -------------------------------------------------------------------------------- /packages/insomnia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/insomnia/README.md -------------------------------------------------------------------------------- /packages/insomnia/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/insomnia/index.js -------------------------------------------------------------------------------- /packages/insomnia/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/insomnia/logo.png -------------------------------------------------------------------------------- /packages/insomnia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/insomnia/package.json -------------------------------------------------------------------------------- /packages/iterm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/iterm/README.md -------------------------------------------------------------------------------- /packages/iterm/aura-theme-soft.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/iterm/aura-theme-soft.itermcolors -------------------------------------------------------------------------------- /packages/iterm/aura-theme.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/iterm/aura-theme.itermcolors -------------------------------------------------------------------------------- /packages/kitty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/kitty/README.md -------------------------------------------------------------------------------- /packages/kitty/aura-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/kitty/aura-theme.conf -------------------------------------------------------------------------------- /packages/konsole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/konsole/README.md -------------------------------------------------------------------------------- /packages/konsole/aura-theme-soft.colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/konsole/aura-theme-soft.colorscheme -------------------------------------------------------------------------------- /packages/konsole/aura-theme.colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/konsole/aura-theme.colorscheme -------------------------------------------------------------------------------- /packages/mattermost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/mattermost/README.md -------------------------------------------------------------------------------- /packages/mattermost/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/mattermost/aura-dark.json -------------------------------------------------------------------------------- /packages/neovim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/README.md -------------------------------------------------------------------------------- /packages/neovim/colors/aura-dark-soft-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/colors/aura-dark-soft-text.lua -------------------------------------------------------------------------------- /packages/neovim/colors/aura-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/colors/aura-dark.lua -------------------------------------------------------------------------------- /packages/neovim/colors/aura-soft-dark-soft-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/colors/aura-soft-dark-soft-text.lua -------------------------------------------------------------------------------- /packages/neovim/colors/aura-soft-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/colors/aura-soft-dark.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/common/color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/common/color.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/common/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/common/core.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/common/hsluv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/common/hsluv.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/common/palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/common/palette.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/common/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/common/util.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/groups/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/groups/editor.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/groups/languages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/groups/languages.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/groups/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/groups/treesitter.lua -------------------------------------------------------------------------------- /packages/neovim/lua/aura-theme/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/neovim/lua/aura-theme/init.lua -------------------------------------------------------------------------------- /packages/ngenuity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/ngenuity/README.md -------------------------------------------------------------------------------- /packages/ngenuity/profiles/joaopealves/Aura Theme.hxp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/ngenuity/profiles/joaopealves/Aura Theme.hxp.zip -------------------------------------------------------------------------------- /packages/plasma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/plasma/README.md -------------------------------------------------------------------------------- /packages/plasma/aura-theme-soft.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/plasma/aura-theme-soft.colors -------------------------------------------------------------------------------- /packages/plasma/aura-theme.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/plasma/aura-theme.colors -------------------------------------------------------------------------------- /packages/rxvt-unicode/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/rxvt-unicode/.Xresources -------------------------------------------------------------------------------- /packages/rxvt-unicode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/rxvt-unicode/README.md -------------------------------------------------------------------------------- /packages/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/slack/README.md -------------------------------------------------------------------------------- /packages/sublime-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/sublime-text/README.md -------------------------------------------------------------------------------- /packages/sublime-text/aura-theme-soft.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/sublime-text/aura-theme-soft.tmTheme -------------------------------------------------------------------------------- /packages/sublime-text/aura-theme.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/sublime-text/aura-theme.tmTheme -------------------------------------------------------------------------------- /packages/sway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/sway/README.md -------------------------------------------------------------------------------- /packages/sway/aura-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/sway/aura-theme.conf -------------------------------------------------------------------------------- /packages/tabby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/tabby/README.md -------------------------------------------------------------------------------- /packages/tabby/tabby-colors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/tabby/tabby-colors.yaml -------------------------------------------------------------------------------- /packages/telegram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/telegram/README.md -------------------------------------------------------------------------------- /packages/telegram/theme.tdesktop-theme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/telegram/theme.tdesktop-theme.zip -------------------------------------------------------------------------------- /packages/terminal-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/terminal-app/README.md -------------------------------------------------------------------------------- /packages/terminal-app/aura-theme.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/terminal-app/aura-theme.terminal -------------------------------------------------------------------------------- /packages/termux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/termux/README.md -------------------------------------------------------------------------------- /packages/termux/aura-theme.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/termux/aura-theme.properties -------------------------------------------------------------------------------- /packages/tilix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/tilix/README.md -------------------------------------------------------------------------------- /packages/tilix/aura-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/tilix/aura-theme.json -------------------------------------------------------------------------------- /packages/vivaldi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vivaldi/README.md -------------------------------------------------------------------------------- /packages/vivaldi/store/vivaldi-aura-theme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vivaldi/store/vivaldi-aura-theme.zip -------------------------------------------------------------------------------- /packages/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /packages/vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/.vscodeignore -------------------------------------------------------------------------------- /packages/vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/README.md -------------------------------------------------------------------------------- /packages/vscode/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/logo.png -------------------------------------------------------------------------------- /packages/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/package.json -------------------------------------------------------------------------------- /packages/vscode/themes/aura-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/themes/aura-dark-color-theme.json -------------------------------------------------------------------------------- /packages/vscode/themes/aura-dark-soft-text-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/themes/aura-dark-soft-text-color-theme.json -------------------------------------------------------------------------------- /packages/vscode/themes/aura-soft-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/themes/aura-soft-dark-color-theme.json -------------------------------------------------------------------------------- /packages/vscode/themes/aura-soft-dark-soft-text-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/vscode/themes/aura-soft-dark-soft-text-color-theme.json -------------------------------------------------------------------------------- /packages/wallpapers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/README.md -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers.zip -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/wallpapers/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /packages/warp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/warp/README.md -------------------------------------------------------------------------------- /packages/warp/aura-theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/warp/aura-theme.yaml -------------------------------------------------------------------------------- /packages/waybar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/waybar/README.md -------------------------------------------------------------------------------- /packages/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/waybar/style.css -------------------------------------------------------------------------------- /packages/windows-terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/windows-terminal/README.md -------------------------------------------------------------------------------- /packages/windows-terminal/aura-theme-soft-dark-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/windows-terminal/aura-theme-soft-dark-soft-text.json -------------------------------------------------------------------------------- /packages/windows-terminal/aura-theme-soft-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/windows-terminal/aura-theme-soft-dark.json -------------------------------------------------------------------------------- /packages/windows-terminal/aura-theme-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/windows-terminal/aura-theme-soft-text.json -------------------------------------------------------------------------------- /packages/windows-terminal/aura-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/windows-terminal/aura-theme.json -------------------------------------------------------------------------------- /packages/zed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/README.md -------------------------------------------------------------------------------- /packages/zed/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/extension.toml -------------------------------------------------------------------------------- /packages/zed/themes/aura-dark-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/themes/aura-dark-soft-text.json -------------------------------------------------------------------------------- /packages/zed/themes/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/themes/aura-dark.json -------------------------------------------------------------------------------- /packages/zed/themes/aura-soft-dark-soft-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/themes/aura-soft-dark-soft-text.json -------------------------------------------------------------------------------- /packages/zed/themes/aura-soft-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/packages/zed/themes/aura-soft-dark.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/boot.ts -------------------------------------------------------------------------------- /src/core/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/index.d.ts -------------------------------------------------------------------------------- /src/core/@types/services/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/color.ts -------------------------------------------------------------------------------- /src/core/@types/services/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/debug.ts -------------------------------------------------------------------------------- /src/core/@types/services/file-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/file-system.ts -------------------------------------------------------------------------------- /src/core/@types/services/function-composition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/function-composition.ts -------------------------------------------------------------------------------- /src/core/@types/services/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/shell.ts -------------------------------------------------------------------------------- /src/core/@types/services/template-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/@types/services/template-engine.ts -------------------------------------------------------------------------------- /src/core/cli/aura.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/aura.ts -------------------------------------------------------------------------------- /src/core/cli/commands/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/build/index.ts -------------------------------------------------------------------------------- /src/core/cli/commands/dev/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/dev/index.ts -------------------------------------------------------------------------------- /src/core/cli/commands/help/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/help/index.ts -------------------------------------------------------------------------------- /src/core/cli/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/index.ts -------------------------------------------------------------------------------- /src/core/cli/commands/make/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/make/index.ts -------------------------------------------------------------------------------- /src/core/cli/commands/make/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/make/port.ts -------------------------------------------------------------------------------- /src/core/cli/commands/tokenize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/commands/tokenize/index.ts -------------------------------------------------------------------------------- /src/core/cli/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/constants/index.ts -------------------------------------------------------------------------------- /src/core/cli/stdin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/stdin.ts -------------------------------------------------------------------------------- /src/core/cli/templates/port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/templates/port/README.md -------------------------------------------------------------------------------- /src/core/cli/templates/port/index.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/templates/port/index.template -------------------------------------------------------------------------------- /src/core/cli/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './log' 2 | -------------------------------------------------------------------------------- /src/core/cli/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/utils/log.ts -------------------------------------------------------------------------------- /src/core/cli/utils/pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/cli/utils/pad.ts -------------------------------------------------------------------------------- /src/core/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/colors/index.ts -------------------------------------------------------------------------------- /src/core/colors/schemes/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/colors/schemes/common.ts -------------------------------------------------------------------------------- /src/core/colors/schemes/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/colors/schemes/dark.ts -------------------------------------------------------------------------------- /src/core/colors/schemes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/colors/schemes/index.ts -------------------------------------------------------------------------------- /src/core/colors/schemes/soft-dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/colors/schemes/soft-dark.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/modules/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/colors/index.ts -------------------------------------------------------------------------------- /src/core/modules/colors/scheme-to-rgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/colors/scheme-to-rgb.ts -------------------------------------------------------------------------------- /src/core/modules/colors/scheme-to-terminal-rgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/colors/scheme-to-terminal-rgb.ts -------------------------------------------------------------------------------- /src/core/modules/colors/tokenize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/colors/tokenize.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/copy-extra-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/copy-extra-files.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-from-in-memory-port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-from-in-memory-port.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-in-memory-port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-in-memory-port.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-port-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-port-file.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-port.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-readme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-readme/index.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/create-readme/join-replacements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/create-readme/join-replacements.ts -------------------------------------------------------------------------------- /src/core/modules/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/compiler/index.ts -------------------------------------------------------------------------------- /src/core/modules/file-system/get-all-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/file-system/get-all-files.ts -------------------------------------------------------------------------------- /src/core/modules/file-system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/file-system/index.ts -------------------------------------------------------------------------------- /src/core/modules/file-system/unlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/file-system/unlink.ts -------------------------------------------------------------------------------- /src/core/modules/file-system/zip-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/file-system/zip-file.ts -------------------------------------------------------------------------------- /src/core/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/index.ts -------------------------------------------------------------------------------- /src/core/modules/loader/allowed-ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/loader/allowed-ports.ts -------------------------------------------------------------------------------- /src/core/modules/loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/core/modules/loader/index.ts -------------------------------------------------------------------------------- /src/ports/alacritty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/alacritty/index.ts -------------------------------------------------------------------------------- /src/ports/alacritty/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/alacritty/templates/README.md -------------------------------------------------------------------------------- /src/ports/alacritty/templates/aura-theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/alacritty/templates/aura-theme.toml -------------------------------------------------------------------------------- /src/ports/chrome/extra/store/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/extra/store/128x128.png -------------------------------------------------------------------------------- /src/ports/chrome/extra/store/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/extra/store/preview.png -------------------------------------------------------------------------------- /src/ports/chrome/extra/store/small-tile-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/extra/store/small-tile-preview.png -------------------------------------------------------------------------------- /src/ports/chrome/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/index.ts -------------------------------------------------------------------------------- /src/ports/chrome/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/templates/README.md -------------------------------------------------------------------------------- /src/ports/chrome/templates/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/chrome/templates/manifest.json -------------------------------------------------------------------------------- /src/ports/code-sandbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/code-sandbox/index.ts -------------------------------------------------------------------------------- /src/ports/code-sandbox/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/code-sandbox/templates/README.md -------------------------------------------------------------------------------- /src/ports/code-sandbox/templates/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/code-sandbox/templates/theme.json -------------------------------------------------------------------------------- /src/ports/color-palettes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/color-palettes/index.ts -------------------------------------------------------------------------------- /src/ports/color-palettes/palettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/color-palettes/palettes.ts -------------------------------------------------------------------------------- /src/ports/color-palettes/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/color-palettes/templates/README.md -------------------------------------------------------------------------------- /src/ports/color-palettes/templates/aura-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/color-palettes/templates/aura-colors.css -------------------------------------------------------------------------------- /src/ports/color-palettes/templates/aura-colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/color-palettes/templates/aura-colors.sass -------------------------------------------------------------------------------- /src/ports/fig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/fig/index.ts -------------------------------------------------------------------------------- /src/ports/fig/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/fig/templates/README.md -------------------------------------------------------------------------------- /src/ports/fig/templates/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/fig/templates/aura-dark.json -------------------------------------------------------------------------------- /src/ports/firefox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/firefox/index.ts -------------------------------------------------------------------------------- /src/ports/firefox/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/firefox/templates/README.md -------------------------------------------------------------------------------- /src/ports/firefox/templates/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/firefox/templates/manifest.json -------------------------------------------------------------------------------- /src/ports/gnome-terminal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/gnome-terminal/index.ts -------------------------------------------------------------------------------- /src/ports/gnome-terminal/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/gnome-terminal/templates/README.md -------------------------------------------------------------------------------- /src/ports/gnome-terminal/templates/aura-theme.dconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/gnome-terminal/templates/aura-theme.dconf -------------------------------------------------------------------------------- /src/ports/hyper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/hyper/index.ts -------------------------------------------------------------------------------- /src/ports/hyper/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/hyper/templates/README.md -------------------------------------------------------------------------------- /src/ports/hyper/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/hyper/templates/index.js -------------------------------------------------------------------------------- /src/ports/hyper/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/hyper/templates/package.json -------------------------------------------------------------------------------- /src/ports/icue/extra/profiles/joaopealves/aura-theme-iCue.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/icue/extra/profiles/joaopealves/aura-theme-iCue.zip -------------------------------------------------------------------------------- /src/ports/icue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/icue/index.ts -------------------------------------------------------------------------------- /src/ports/icue/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/icue/templates/README.md -------------------------------------------------------------------------------- /src/ports/insomnia/extra/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/insomnia/extra/logo.png -------------------------------------------------------------------------------- /src/ports/insomnia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/insomnia/index.ts -------------------------------------------------------------------------------- /src/ports/insomnia/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/insomnia/templates/README.md -------------------------------------------------------------------------------- /src/ports/insomnia/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/insomnia/templates/index.js -------------------------------------------------------------------------------- /src/ports/insomnia/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/insomnia/templates/package.json -------------------------------------------------------------------------------- /src/ports/iterm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/iterm/index.ts -------------------------------------------------------------------------------- /src/ports/iterm/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/iterm/templates/README.md -------------------------------------------------------------------------------- /src/ports/iterm/templates/aura-theme.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/iterm/templates/aura-theme.itermcolors -------------------------------------------------------------------------------- /src/ports/kitty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/kitty/index.ts -------------------------------------------------------------------------------- /src/ports/kitty/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/kitty/templates/README.md -------------------------------------------------------------------------------- /src/ports/konsole/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/konsole/index.ts -------------------------------------------------------------------------------- /src/ports/konsole/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/konsole/templates/README.md -------------------------------------------------------------------------------- /src/ports/konsole/templates/aura-theme.colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/konsole/templates/aura-theme.colorscheme -------------------------------------------------------------------------------- /src/ports/mattermost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/mattermost/index.ts -------------------------------------------------------------------------------- /src/ports/mattermost/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/mattermost/templates/README.md -------------------------------------------------------------------------------- /src/ports/mattermost/templates/aura-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/mattermost/templates/aura-dark.json -------------------------------------------------------------------------------- /src/ports/neovim/colorSchemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/colorSchemes.ts -------------------------------------------------------------------------------- /src/ports/neovim/extra/colors/aura-dark-soft-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/colors/aura-dark-soft-text.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/colors/aura-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/colors/aura-dark.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/colors/aura-soft-dark-soft-text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/colors/aura-soft-dark-soft-text.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/colors/aura-soft-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/colors/aura-soft-dark.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/common/color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/common/color.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/common/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/common/core.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/common/hsluv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/common/hsluv.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/common/palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/common/palette.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/common/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/common/util.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/groups/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/groups/editor.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/groups/languages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/groups/languages.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/groups/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/groups/treesitter.lua -------------------------------------------------------------------------------- /src/ports/neovim/extra/lua/aura-theme/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/extra/lua/aura-theme/init.lua -------------------------------------------------------------------------------- /src/ports/neovim/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/index.ts -------------------------------------------------------------------------------- /src/ports/neovim/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/neovim/templates/README.md -------------------------------------------------------------------------------- /src/ports/ngenuity/extra/profiles/joaopealves/Aura Theme.hxp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/ngenuity/extra/profiles/joaopealves/Aura Theme.hxp.zip -------------------------------------------------------------------------------- /src/ports/ngenuity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/ngenuity/index.ts -------------------------------------------------------------------------------- /src/ports/ngenuity/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/ngenuity/templates/README.md -------------------------------------------------------------------------------- /src/ports/plasma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/plasma/index.ts -------------------------------------------------------------------------------- /src/ports/plasma/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/plasma/templates/README.md -------------------------------------------------------------------------------- /src/ports/plasma/templates/aura-theme.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/plasma/templates/aura-theme.colors -------------------------------------------------------------------------------- /src/ports/rxvt-unicode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/rxvt-unicode/index.ts -------------------------------------------------------------------------------- /src/ports/rxvt-unicode/templates/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/rxvt-unicode/templates/.Xresources -------------------------------------------------------------------------------- /src/ports/rxvt-unicode/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/rxvt-unicode/templates/README.md -------------------------------------------------------------------------------- /src/ports/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/slack/index.ts -------------------------------------------------------------------------------- /src/ports/slack/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/slack/templates/README.md -------------------------------------------------------------------------------- /src/ports/sublime-text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sublime-text/index.ts -------------------------------------------------------------------------------- /src/ports/sublime-text/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sublime-text/templates/README.md -------------------------------------------------------------------------------- /src/ports/sublime-text/templates/aura-theme.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sublime-text/templates/aura-theme.tmTheme -------------------------------------------------------------------------------- /src/ports/sway/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sway/index.ts -------------------------------------------------------------------------------- /src/ports/sway/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sway/templates/README.md -------------------------------------------------------------------------------- /src/ports/sway/templates/aura-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/sway/templates/aura-theme.conf -------------------------------------------------------------------------------- /src/ports/tabby/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tabby/index.ts -------------------------------------------------------------------------------- /src/ports/tabby/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tabby/templates/README.md -------------------------------------------------------------------------------- /src/ports/tabby/templates/tabby-colors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tabby/templates/tabby-colors.yaml -------------------------------------------------------------------------------- /src/ports/telegram/extra/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/telegram/extra/tiled.png -------------------------------------------------------------------------------- /src/ports/telegram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/telegram/index.ts -------------------------------------------------------------------------------- /src/ports/telegram/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/telegram/templates/README.md -------------------------------------------------------------------------------- /src/ports/telegram/templates/colors.tdesktop-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/telegram/templates/colors.tdesktop-theme -------------------------------------------------------------------------------- /src/ports/terminal-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/terminal-app/index.ts -------------------------------------------------------------------------------- /src/ports/terminal-app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/terminal-app/templates/README.md -------------------------------------------------------------------------------- /src/ports/termux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/termux/index.ts -------------------------------------------------------------------------------- /src/ports/termux/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/termux/templates/README.md -------------------------------------------------------------------------------- /src/ports/termux/templates/aura-theme.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/termux/templates/aura-theme.properties -------------------------------------------------------------------------------- /src/ports/tilix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tilix/index.ts -------------------------------------------------------------------------------- /src/ports/tilix/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tilix/templates/README.md -------------------------------------------------------------------------------- /src/ports/tilix/templates/aura-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/tilix/templates/aura-theme.json -------------------------------------------------------------------------------- /src/ports/vivaldi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vivaldi/index.ts -------------------------------------------------------------------------------- /src/ports/vivaldi/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vivaldi/templates/README.md -------------------------------------------------------------------------------- /src/ports/vivaldi/templates/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vivaldi/templates/settings.json -------------------------------------------------------------------------------- /src/ports/vscode/extra/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/extra/.vscode/launch.json -------------------------------------------------------------------------------- /src/ports/vscode/extra/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/extra/.vscodeignore -------------------------------------------------------------------------------- /src/ports/vscode/extra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/extra/CHANGELOG.md -------------------------------------------------------------------------------- /src/ports/vscode/extra/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/extra/logo.png -------------------------------------------------------------------------------- /src/ports/vscode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/index.ts -------------------------------------------------------------------------------- /src/ports/vscode/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/templates/README.md -------------------------------------------------------------------------------- /src/ports/vscode/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/templates/package.json -------------------------------------------------------------------------------- /src/ports/vscode/templates/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/vscode/templates/theme.json -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-0/0 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-1/1 - Aura #2 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-2/2 - Aura #2 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-3/3 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 1400x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 1400x900.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 1920x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1080.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - 2560x1600.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x1920.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1080x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1242x2688.png -------------------------------------------------------------------------------- /src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1600x2560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/extra/aura-theme-wallpapers/type-4/4 - Aura #1 - Mobile - 1600x2560.png -------------------------------------------------------------------------------- /src/ports/wallpapers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/index.ts -------------------------------------------------------------------------------- /src/ports/wallpapers/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/wallpapers/templates/README.md -------------------------------------------------------------------------------- /src/ports/warp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/warp/index.ts -------------------------------------------------------------------------------- /src/ports/warp/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/warp/templates/README.md -------------------------------------------------------------------------------- /src/ports/warp/templates/aura-theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/warp/templates/aura-theme.yaml -------------------------------------------------------------------------------- /src/ports/waybar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/waybar/index.ts -------------------------------------------------------------------------------- /src/ports/waybar/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/waybar/templates/README.md -------------------------------------------------------------------------------- /src/ports/waybar/templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/waybar/templates/style.css -------------------------------------------------------------------------------- /src/ports/windows-terminal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/windows-terminal/index.ts -------------------------------------------------------------------------------- /src/ports/windows-terminal/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/windows-terminal/templates/README.md -------------------------------------------------------------------------------- /src/ports/windows-terminal/templates/aura-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/windows-terminal/templates/aura-theme.json -------------------------------------------------------------------------------- /src/ports/zed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/zed/index.ts -------------------------------------------------------------------------------- /src/ports/zed/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/zed/templates/README.md -------------------------------------------------------------------------------- /src/ports/zed/templates/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/zed/templates/extension.toml -------------------------------------------------------------------------------- /src/ports/zed/templates/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/ports/zed/templates/theme.json -------------------------------------------------------------------------------- /src/services/colors/features/color-adjustments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/color-adjustments/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/color-adjustments/providers/polished/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/color-adjustments/providers/polished/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/color-convertion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/color-convertion/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/color-convertion/providers/color-convert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/color-convertion/providers/color-convert/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/terminal-convertion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/terminal-convertion/index.ts -------------------------------------------------------------------------------- /src/services/colors/features/terminal-convertion/providers/termcolors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/features/terminal-convertion/providers/termcolors/index.ts -------------------------------------------------------------------------------- /src/services/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/colors/index.ts -------------------------------------------------------------------------------- /src/services/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/debug/index.ts -------------------------------------------------------------------------------- /src/services/debug/providers/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/debug/providers/debug/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/copy-files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/copy-files/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/copy-files/providers/cpy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/copy-files/providers/cpy/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/file-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/file-status/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/file-status/providers/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/file-status/providers/fs/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/read-dir/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/read-dir/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/read-dir/providers/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/read-dir/providers/fs/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/read-file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/read-file/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/read-file/providers/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/read-file/providers/fs/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/unlink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/unlink/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/unlink/providers/rimraf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/unlink/providers/rimraf/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/write-file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/write-file/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/write-file/providers/fs-extra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/write-file/providers/fs-extra/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/zip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/zip/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/zip/providers/adm-zip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/zip/providers/adm-zip/index.ts -------------------------------------------------------------------------------- /src/services/file-system/features/zip/providers/zip-a-folder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/features/zip/providers/zip-a-folder/index.ts -------------------------------------------------------------------------------- /src/services/file-system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/file-system/index.ts -------------------------------------------------------------------------------- /src/services/function-composition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/function-composition/index.ts -------------------------------------------------------------------------------- /src/services/function-composition/providers/ramda/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/function-composition/providers/ramda/index.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/shell/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/shell/index.ts -------------------------------------------------------------------------------- /src/services/shell/providers/child-process/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/shell/providers/child-process/index.ts -------------------------------------------------------------------------------- /src/services/template-engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/template-engine/index.ts -------------------------------------------------------------------------------- /src/services/template-engine/providers/mustache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/services/template-engine/providers/mustache/index.ts -------------------------------------------------------------------------------- /src/shared/constants/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/constants/emojis.ts -------------------------------------------------------------------------------- /src/shared/constants/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/constants/files.ts -------------------------------------------------------------------------------- /src/shared/constants/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/constants/folders.ts -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/constants/index.ts -------------------------------------------------------------------------------- /src/shared/constants/info.ts: -------------------------------------------------------------------------------- 1 | export { theme as info } from 'root/package.json' 2 | -------------------------------------------------------------------------------- /src/shared/constants/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/constants/is.ts -------------------------------------------------------------------------------- /src/shared/templates/readmes/author-tbody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/templates/readmes/author-tbody.md -------------------------------------------------------------------------------- /src/shared/templates/readmes/author-thead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/templates/readmes/author-thead.md -------------------------------------------------------------------------------- /src/shared/templates/readmes/basic-heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/templates/readmes/basic-heading.md -------------------------------------------------------------------------------- /src/shared/templates/readmes/done.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/templates/readmes/done.md -------------------------------------------------------------------------------- /src/shared/templates/readmes/footer.md: -------------------------------------------------------------------------------- 1 | # License 2 | [MIT © {{ author.name }}]({{{ repository }}}/blob/main/LICENSE) -------------------------------------------------------------------------------- /src/shared/templates/readmes/npm-heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/templates/readmes/npm-heading.md -------------------------------------------------------------------------------- /src/shared/utils/capitalize-first-letter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/utils/capitalize-first-letter.ts -------------------------------------------------------------------------------- /src/shared/utils/get-path-by-platform-in-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/utils/get-path-by-platform-in-dev.ts -------------------------------------------------------------------------------- /src/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/utils/index.ts -------------------------------------------------------------------------------- /src/shared/utils/to-camel-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/utils/to-camel-case.ts -------------------------------------------------------------------------------- /src/shared/utils/to-port-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/src/shared/utils/to-port-name.ts -------------------------------------------------------------------------------- /tests/fixtures/README.md: -------------------------------------------------------------------------------- 1 | {{ packageName }} -------------------------------------------------------------------------------- /tests/fixtures/color-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/fixtures/color-scheme.ts -------------------------------------------------------------------------------- /tests/fixtures/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/fixtures/template.json -------------------------------------------------------------------------------- /tests/unit/core/modules/colors/scheme-to-rgb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/core/modules/colors/scheme-to-rgb.spec.ts -------------------------------------------------------------------------------- /tests/unit/core/modules/colors/scheme-to-terminal-rgb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/core/modules/colors/scheme-to-terminal-rgb.spec.ts -------------------------------------------------------------------------------- /tests/unit/core/modules/colors/tokenize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/core/modules/colors/tokenize.spec.ts -------------------------------------------------------------------------------- /tests/unit/core/modules/compiler/create-in-memory-port.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/core/modules/compiler/create-in-memory-port.spec.ts -------------------------------------------------------------------------------- /tests/unit/core/modules/compiler/create-readme.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/core/modules/compiler/create-readme.spec.ts -------------------------------------------------------------------------------- /tests/unit/utils/capitalize-first-letter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/utils/capitalize-first-letter.spec.ts -------------------------------------------------------------------------------- /tests/unit/utils/to-camel-case.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/utils/to-camel-case.spec.ts -------------------------------------------------------------------------------- /tests/unit/utils/to-port-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tests/unit/utils/to-port-name.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baliestri/aura-theme/HEAD/yarn.lock --------------------------------------------------------------------------------