Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions settings-portal/Settings.vala
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ public class SettingsDaemon.Settings : GLib.Object {

case 10: // Slate
return rgb_to_variant (0x667885);

case 11: // Latte
return rgb_to_variant (0xe7c591);
}

return rgb_to_variant (0);
Expand Down
3 changes: 2 additions & 1 deletion src/Backends/AccentColorManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public class SettingsDaemon.Backends.AccentColorManager : Object {
{ 7, "Purple", "io.elementary.stylesheet.grape", rgba_from_int (0xa56de2) }, // vala-lint=double-spaces
{ 8, "Pink", "io.elementary.stylesheet.bubblegum", rgba_from_int (0xde3e80) }, // vala-lint=double-spaces
{ 9, "Brown", "io.elementary.stylesheet.cocoa", rgba_from_int (0x8a715e) }, // vala-lint=double-spaces
{ 10, "Gray", "io.elementary.stylesheet.slate", rgba_from_int (0x667885) } // vala-lint=double-spaces
{ 10, "Gray", "io.elementary.stylesheet.slate", rgba_from_int (0x667885) }, // vala-lint=double-spaces
{ 11, "Latte", "io.elementary.stylesheet.latte", rgba_from_int (0xe7c591) }, // vala-lint=double-spaces
};

public AccentColorManager (Pantheon.AccountsService pantheon_accounts_service, AccountsService accounts_service) {
Expand Down