Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: Source/devtools/front_end/common/Color.js

Issue 432773002: Add the named color `rebeccapurple` (#639) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/css/SVGCSSValueKeywords.in ('k') | Source/platform/ColorData.gperf » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Joseph Pecoraro 3 * Copyright (C) 2009 Joseph Pecoraro
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 "palegreen": [152,251,152], 579 "palegreen": [152,251,152],
580 "paleturquoise": [175,238,238], 580 "paleturquoise": [175,238,238],
581 "palevioletred": [219,112,147], 581 "palevioletred": [219,112,147],
582 "papayawhip": [255,239,213], 582 "papayawhip": [255,239,213],
583 "peachpuff": [255,218,185], 583 "peachpuff": [255,218,185],
584 "peru": [205,133,63], 584 "peru": [205,133,63],
585 "pink": [255,192,203], 585 "pink": [255,192,203],
586 "plum": [221,160,221], 586 "plum": [221,160,221],
587 "powderblue": [176,224,230], 587 "powderblue": [176,224,230],
588 "purple": [128,0,128], 588 "purple": [128,0,128],
589 "rebeccapurple": [102,51,153],
589 "red": [255,0,0], 590 "red": [255,0,0],
590 "rosybrown": [188,143,143], 591 "rosybrown": [188,143,143],
591 "royalblue": [65,105,225], 592 "royalblue": [65,105,225],
592 "saddlebrown": [139,69,19], 593 "saddlebrown": [139,69,19],
593 "salmon": [250,128,114], 594 "salmon": [250,128,114],
594 "sandybrown": [244,164,96], 595 "sandybrown": [244,164,96],
595 "seagreen": [46,139,87], 596 "seagreen": [46,139,87],
596 "seashell": [255,245,238], 597 "seashell": [255,245,238],
597 "sienna": [160,82,45], 598 "sienna": [160,82,45],
598 "silver": [192,192,192], 599 "silver": [192,192,192],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 WebInspector.Color.Format = { 636 WebInspector.Color.Format = {
636 Original: "original", 637 Original: "original",
637 Nickname: "nickname", 638 Nickname: "nickname",
638 HEX: "hex", 639 HEX: "hex",
639 ShortHEX: "shorthex", 640 ShortHEX: "shorthex",
640 RGB: "rgb", 641 RGB: "rgb",
641 RGBA: "rgba", 642 RGBA: "rgba",
642 HSL: "hsl", 643 HSL: "hsl",
643 HSLA: "hsla" 644 HSLA: "hsla"
644 } 645 }
OLDNEW
« no previous file with comments | « Source/core/css/SVGCSSValueKeywords.in ('k') | Source/platform/ColorData.gperf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698