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

View file

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

View file

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

View file

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

View file

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