Update .config/drapeau/rose-pine-dawn.toml

Update .config/drapeau/rose-pine-moon.toml
Update .config/drapeau/rose-pine.toml
Update .config/mpd/mpd.conf
Update .config/nvim/lua/plugins/bufferline.lua
This commit is contained in:
punkfairie 2024-08-05 17:35:05 -07:00
parent 0049fe3fd8
commit 613b985396
Signed by: punkfairie
GPG key ID: A86AF57F837E320F
5 changed files with 62 additions and 63 deletions

View file

@ -1,19 +1,19 @@
name = "rose-pine"
flavor = "dawn"
base00 = "faf4ed" # base
base01 = "fffaf3" # surface
base02 = "f2e9de" # overlay
base03 = "9893a5" # muted
base04 = "797593" # subtle
base05 = "575279" # text
base06 = "575279" # text
base07 = "cecacd" # highlight high
base08 = "b4637a" # love
base09 = "ea9d34" # gold
base0A = "d7827e" # rose
base0B = "286983" # pine
base0C = "56949f" # foam
base0D = "907aa9" # iris
base0E = "ea9d34" # gold
base0F = "cecacd" # highlight high
base00 = "#faf4ed" # base
base01 = "#fffaf3" # surface
base02 = "#f2e9de" # overlay
base03 = "#9893a5" # muted
base04 = "#797593" # subtle
base05 = "#575279" # text
base06 = "#575279" # text
base07 = "#cecacd" # highlight high
base08 = "#b4637a" # love
base09 = "#ea9d34" # gold
base0A = "#d7827e" # rose
base0B = "#286983" # pine
base0C = "#56949f" # foam
base0D = "#907aa9" # iris
base0E = "#ea9d34" # gold
base0F = "#cecacd" # highlight high

View file

@ -1,19 +1,19 @@
name = "rose-pine"
flavor = "moon"
base00 = "232136" # base
base01 = "2a273f" # surface
base02 = "393552" # overlay
base03 = "6e6a86" # muted
base04 = "908caa" # subtle
base05 = "e0def4" # text
base06 = "e0def4" # text
base07 = "56526e" # highlight high
base08 = "eb6f92" # love
base09 = "f6c177" # gold
base0A = "ea9a97" # rose
base0B = "3e8fb0" # pine
base0C = "9ccfd8" # foam
base0D = "c4a7e7" # iris
base0E = "f6c177" # gold
base0F = "56526e" # highlight high
base00 = "#232136" # base
base01 = "#2a273f" # surface
base02 = "#393552" # overlay
base03 = "#6e6a86" # muted
base04 = "#908caa" # subtle
base05 = "#e0def4" # text
base06 = "#e0def4" # text
base07 = "#56526e" # highlight high
base08 = "#eb6f92" # love
base09 = "#f6c177" # gold
base0A = "#ea9a97" # rose
base0B = "#3e8fb0" # pine
base0C = "#9ccfd8" # foam
base0D = "#c4a7e7" # iris
base0E = "#f6c177" # gold
base0F = "#56526e" # highlight high

View file

@ -1,19 +1,19 @@
name = "rose-pine"
name = "rosepine"
flavor = "main"
base00 = "191724" # base
base01 = "1f1d2e" # surface
base02 = "26233a" # overlay
base03 = "6e6a86" # muted
base04 = "908caa" # subtle
base05 = "e0def4" # text
base06 = "e0def4" # text
base07 = "524f67" # highlight high
base08 = "eb6f92" # love
base09 = "f6c177" # gold
base0A = "ebbcba" # rose
base0B = "31748f" # pine
base0C = "9ccfd8" # foam
base0D = "c4a7e7" # iris
base0E = "f6c177" # gold
base0F = "524f67" # highlight high
base00 = "#191724" # base
base01 = "#1f1d2e" # surface
base02 = "#26233a" # overlay
base03 = "#6e6a86" # muted
base04 = "#908caa" # subtle
base05 = "#e0def4" # text
base06 = "#e0def4" # text
base07 = "#524f67" # highlight high
base08 = "#eb6f92" # love
base09 = "#f6c177" # gold
base0A = "#ebbcba" # rose
base0B = "#31748f" # pine
base0C = "#9ccfd8" # foam
base0D = "#c4a7e7" # iris
base0E = "#f6c177" # gold
base0F = "#524f67" # highlight high

View file

@ -223,15 +223,15 @@ audio_output {
# An example of an ALSA output:
#
#audio_output {
# type "alsa"
# name "My ALSA Device"
## device "hw:0,0" # optional
## mixer_type "hardware" # optional
## mixer_device "default" # optional
## mixer_control "PCM" # optional
## mixer_index "0" # optional
#}
audio_output {
type "alsa"
name "My ALSA Device"
# device "hw:0,0" # optional
# mixer_type "hardware" # optional
# mixer_device "default" # optional
# mixer_control "PCM" # optional
# mixer_index "0" # optional
}
#
# An example of an OSS output:
#

View file

@ -1,12 +1,11 @@
{{ if eq .drapeau.colors.name "rose-pine" -}}
local highlights = require("rose-pine.plugins.bufferline")
return {
{
"akinsho/bufferline.nvim",
opts = {
highlights = highlights,
},
opts = function(_, opts)
local highlights = require("rose-pine.plugins.bufferline")
table.insert(opts, { highlights = highlights })
end,
},
}
{{ end -}}