blob: 714ec91a4eca9cc29e8cdca53ec94c58a52f7006 [file] [log] [blame]
/* This file is generated from:
* colors_test_palette.json5
* colors_test.json5
*/
syntax = "proto3";
package chromeos;
// Non-premultiplied 8-bit ARGB values.
message Color {
// Color value to use in light mode.
uint32 light_value = 1;
// Color value to use in dark mode.
uint32 dark_value = 2;
}
message Colors {
map<string, Color> palette_colors = 1;
map<string, Color> test_colors = 2;
}