first
This commit is contained in:
commit
59426d62fb
102 changed files with 42796 additions and 0 deletions
42
Controls/Toolbar/ToolbarColors.js
Normal file
42
Controls/Toolbar/ToolbarColors.js
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
////////////////////////////////////////////////////////////
|
||||
//// © Microsoft. All rights reserved. ////
|
||||
////////////////////////////////////////////////////////////
|
||||
|
||||
(function (BaseNS) {
|
||||
WinJS.Namespace.defineWithParent(BaseNS, "Paint", {
|
||||
ToolbarManager: {
|
||||
ToolbarColors: [
|
||||
"rgb(0, 0, 0)",
|
||||
"rgb(128, 128, 128)",
|
||||
"rgb(166, 166, 166)",
|
||||
"rgb(217, 217, 217)",
|
||||
"rgb(255, 255, 255)",
|
||||
"rgb(253, 233, 217)",
|
||||
"rgb(255, 204, 153)",
|
||||
"rgb(153, 102, 51)",
|
||||
"rgb(102, 51, 0)",
|
||||
"rgb(128, 0, 0)",
|
||||
"rgb(255, 0, 0)",
|
||||
"rgb(255, 102, 0)",
|
||||
"rgb(255, 192, 0)",
|
||||
"rgb(255, 215, 47)",
|
||||
"rgb(255, 255, 0)",
|
||||
"rgb(255, 255, 153)",
|
||||
"rgb(204, 255, 102)",
|
||||
"rgb(153, 255, 151)",
|
||||
"rgb(0, 204, 0)",
|
||||
"rgb(0, 128, 0)",
|
||||
"rgb(51, 153, 102)",
|
||||
"rgb(0, 176, 240)",
|
||||
"rgb(0, 0, 255)",
|
||||
"rgb(0, 0, 153)",
|
||||
"rgb(79, 0, 158)",
|
||||
"rgb(112, 48, 160)",
|
||||
"rgb(153, 102, 255)",
|
||||
"rgb(255, 153, 255)",
|
||||
"rgb(255, 51, 153)",
|
||||
"rgb(204, 0, 153)"
|
||||
]
|
||||
}
|
||||
});
|
||||
})(Microsoft);
|
||||
Reference in a new issue