Adding menu palettes
Learn how to add new color palettes to DSS.
Intro
Adding a color palette
DeadSeaScrollsMenu.AddPalettes({
{
-- the name of your palette
Name = "lavender",
-- Below you will define the colors your palette will use
-- They are defined as a list of 3 values of red, green, and blue
-- Try using Google's RGB color picker to find some good colors
-- What color is the paper?
{128, 98, 189},
-- What color is normal text?
{20, 16, 43},
-- What color is highlighted text?
{28, 15, 24}
}
})
Last updated