Start with the palette viridis. In my opinion, the colors are too bright for me, and for my purposes they look too artificial. so I would like to apply some transparency or similar to reduce saturation:
library(nord)
library(scales)
library(viridis)
library(nord)
show_col(viridis(5))
show_col(viridis(5, alpha=.5))
Applying alpha transparency internally seems to work.
.
However, when it starts in ggplot, it automatically changes the alpha value to 1 and sets the full viridis intensity:
ggplot(faithfuld, aes(waiting, eruptions)) +
geom_raster(aes(fill = density)) +
scale_fill_viridis(5, alpha=.5)

In another example, I found the opposite problem, lack of intensity / saturation. For example, the "shine" palette from the package is nordgorgeous, but it looks a bit dull, lacks saturation, at least for my purposes.
show_col(nord("aurora",5))

, , 1, viridis, .
show_col(nord("aurora", alpha=.5))

alpha(). , .
show_col(alpha(nord("aurora",5)), .5)

/ viridis nord ggplot?