@font-face {
    font-family: "theTestFont";
    src: url("../fonts/ColorFontTest-Regular.otf");
}
@font-palette-values --custom {
    font-family: "theTestFont";
    override-colors: 0 rgb(74 11 0), 1 rgb(149 22 1), 2 rgb(183 27 1),
        3 rgb(193 28 1);
}
.customPalette {
    font-palette: --custom;
}
body {
    font-family: "theTestFont";
    font-size: 200px;
}
