| // Copyright 2021 The Chromium Authors | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| module tab_groups.mojom; | |
| // The color Id associated with a given Tab Group. Maps to | |
| // tab_groups::TabGroupColorId in components/tab_groups/tab_group_color.h. | |
| [Stable, Extensible] | |
| enum Color { | |
| [Default] kGrey, | |
| kBlue, | |
| kRed, | |
| kYellow, | |
| kGreen, | |
| kPink, | |
| kPurple, | |
| kCyan, | |
| kOrange, | |
| }; |