An open API service indexing awesome lists of open source software.

https://github.com/T-b-t-nchos/Aquavium.nvim

Aquarium color scheme on Neovim. Designed for use with a transparent terminal background. // 透過背景のターミナル向けにデザインされた水族館風Neovimカラースキーム。// #Aquavium
https://github.com/T-b-t-nchos/Aquavium.nvim

neo-vim-extension neovim neovim-color neovim-colors neovim-colorschemes neovim-lua-plugin neovim-plugin neovim-themes

Last synced: about 2 months ago
JSON representation

Aquarium color scheme on Neovim. Designed for use with a transparent terminal background. // 透過背景のターミナル向けにデザインされた水族館風Neovimカラースキーム。// #Aquavium

Awesome Lists containing this project

README

          


🪼 Aquavium.nvim 🦈


Aquarium color scheme on Neovim



Preview












Built for Neovim






Required Neovim 0.11+









License






Notice








Last commit




Total commits




Stars




Total Issues




Total Pull Requests


## ✨ 概要 - Overview -
"Aquavium" is designed for use with a transparent terminal background
"Aquavium"はターミナルの背景を透過させることを前提とした、
and features an aquarium-themed color scheme
水族館をモチーフにしたカラーテーマです。

## 📷️ プレビュー - Preview -

|TermColor|dark-wallpaper|light-wallpaper|
|---|---|---|
|black|![win11,000000,70per,dark](./docs/images/win11-000000-70per-dark.png)|![win11,000000,70per,light](./docs/images/win11-000000-70per-light.png)|
|blue|![win11,02083a,70per,dark](./docs/images/win11-02083a-70per-dark.png)|![win11,blue,70per,light](./docs/images/win11-02083a-70per-light.png)|

## 💼 依存関係 - Dependents -
- [Neovim](https://github.com/neovim/neovim) 0.11+
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) (Optional)

## 🧩 対応しているプラグイン - Supported plugins -
- [bufferline.nvim](https://github.com/akinsho/bufferline.nvim)
- [dashboard-nvim](https://github.com/nvimdev/dashboard-nvim/)
- [lazy.nvim](https://github.com/folke/lazy.nvim)
- [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)
- [Markview.nvim](https://github.com/OXY2DEV/markview.nvim)
- [nvim-notify](https://github.com/rcarriga/nvim-notify)
- [nvim-treesitter-context](https://github.com/nvim-treesitter/nvim-treesitter-context)

## 🔧 インストール - Install -
### In terminal
Please set opacity
透明度を設定してください。

> [!TIP]
> Recommend background: #000, transparent: 70%
> 推奨 背景: #000, 不透明度: 70%

例(example):
```lua
---- WezTerm Nightly
-- Set background color
config.window_background_gradient = {colors = {'#000000'}} -- or other color

-- Set opacity
config.window_background_opacity = 0.7

--config.window_background_opacity = opacity_state
--config.window_decorations = 'INTEGRATED_BUTTONS'
```
### In Neovim
#### Lazy.nvim
```lua
{
"T-b-t-nchos/Aquavium.nvim",
lazy = false,
priority = 1000,
config = function()
local aquavium = require("Aquavium")

aquavium.setup({
-- options

---- For example,
-- bold = false,
-- italic = false,
-- transparent = false,
--
-- custom_highlights = function(c, opts)
-- return {
-- Comment = { fg = c.cyan, bold = opts.bold }
-- }
-- end,
})

vim.cmd("colorscheme Aquavium")
end,
},
```

## 🛠️ オプション - Options -
```lua
{
bold = true, -- enable/disable to use bold-style
italic = true, -- enable/disable to use italic-style
transparent = true, -- enable/disable transparent background

-- Add custom highlights
-- You can use the colors and options in the function.
-- Also, you can use the simpler table if you don't need the colors and options.
custom_highlights = function(c, opts)
return {
}
end,
}
```

## 💡 インスピレーション元 - Source of inspire -

This color theme is inspired by [The Aquarium does not dance](https://daidai7742.wixsite.com/aqua-dance).
本カラーテーマは[アクアリウムは踊らない](https://daidai7742.wixsite.com/aqua-dance)より、インスピレーションを受けました。
For more details, please see [here](./docs/TADND.md).
アクアリウムは踊らないについて、詳しくは[こちら](./docs/TADND.md)を御覧ください。
(2026/02/15) Happy 2nd Anniversary!
(2026/02/15) 二周年、おめでとうございます!

> [!WARNING]
> This work is a fan creation and has no affiliation with the official creators.
> 本作品は、公式様とは一切の関わりを持たない、ファンによる作品です。

> [!NOTE]
> This color scheme complies with [The Aquarium does not dance, Secondary Creation Guideline](https://daidai7742.wixsite.com/aqua-dance/guideline).
> 本カラースキームは[アクアリウムは踊らない二次創作ガイドライン](https://daidai7742.wixsite.com/aqua-dance/guideline)に準拠しています。

## 🙏 お願い - Request to you -
> This is my first time developing a color scheme. So, there may be some issues.
> このカラースキームは、私の初めてのカラースキーム開発です。そのため、不具合などがある可能性があります。
> I'd love to take a look at your GitHub issue or PR if you find any issues.
> 不具合などを見つけた場合は、Issue/PRの作成を、ぜひお願い致します。

> Also, I’d love to see any requests on GitHub issues.
> また、GitHub issue 上でのリクエスト等もお待ちしています。

## 👥 貢献者 - Contributors -
See here:
こちらをご覧ください: **[🤝THANKS.md](./THANKS.md)**