|
11 | 11 |
|
12 | 12 | <script> |
13 | 13 | import c3 from 'c3'; |
14 | | -import pfPaletteColors from 'patternfly/dist/js/patternfly-settings-colors.js'; |
| 14 | +
|
| 15 | +// FROM node_modules/patternfly/dist/js/patternfly-settings-colors.js |
| 16 | +const patternfly = { |
| 17 | + pfPaletteColors: { |
| 18 | + black: '#030303', |
| 19 | + black100: '#fafafa', |
| 20 | + black200: '#ededed', |
| 21 | + black300: '#d1d1d1', |
| 22 | + black400: '#bbbbbb', |
| 23 | + black500: '#8b8d8f', |
| 24 | + black600: '#72767b', |
| 25 | + black700: '#4d5258', |
| 26 | + black800: '#393f44', |
| 27 | + black900: '#292e34', |
| 28 | + blue: '#0088ce', |
| 29 | + blue100: '#bee1f4', |
| 30 | + blue200: '#7dc3e8', |
| 31 | + blue300: '#39a5dc', |
| 32 | + blue400: '#0088ce', |
| 33 | + blue500: '#00659c', |
| 34 | + blue600: '#004368', |
| 35 | + blue700: '#002235', |
| 36 | + gold: '#f0ab00', |
| 37 | + gold100: '#fbeabc', |
| 38 | + gold200: '#f9d67a', |
| 39 | + gold300: '#f5c12e', |
| 40 | + gold400: '#f0ab00', |
| 41 | + gold500: '#b58100', |
| 42 | + gold600: '#795600', |
| 43 | + gold700: '#3d2c00', |
| 44 | + orange: '#ec7a08', |
| 45 | + orange100: '#fbdebf', |
| 46 | + orange200: '#f7bd7f', |
| 47 | + orange300: '#f39d3c', |
| 48 | + orange400: '#ec7a08', |
| 49 | + orange500: '#b35c00', |
| 50 | + orange600: '#773d00', |
| 51 | + orange700: '#3b1f00', |
| 52 | + lightBlue: '#00b9e4', |
| 53 | + lightBlue100: '#beedf9', |
| 54 | + lightBlue200: '#7cdbf3', |
| 55 | + lightBlue300: '#35caed', |
| 56 | + lightBlue400: '#00b9e4', |
| 57 | + lightBlue500: '#008bad', |
| 58 | + lightBlue600: '#005c73', |
| 59 | + lightBlue700: '#002d39', |
| 60 | + green: '#3f9c35', |
| 61 | + green100: '#cfe7cd', |
| 62 | + green200: '#9ecf99', |
| 63 | + green300: '#6ec664', |
| 64 | + green400: '#3f9c35', |
| 65 | + green500: '#2d7623', |
| 66 | + green600: '#1e4f18', |
| 67 | + green700: '#0f280d', |
| 68 | + lightGreen: '#92d400', |
| 69 | + lightGreen100: '#e4f5bc', |
| 70 | + lightGreen200: '#c8eb79', |
| 71 | + lightGreen300: '#ace12e', |
| 72 | + lightGreen400: '#92d400', |
| 73 | + lightGreen500: '#6ca100', |
| 74 | + lightGreen600: '#486b00', |
| 75 | + lightGreen700: '#253600', |
| 76 | + cyan: '#007a87', |
| 77 | + cyan100: '#bedee1', |
| 78 | + cyan200: '#7dbdc3', |
| 79 | + cyan300: '#3a9ca6', |
| 80 | + cyan400: '#007a87', |
| 81 | + cyan500: '#005c66', |
| 82 | + cyan600: '#003d44', |
| 83 | + cyan700: '#001f22', |
| 84 | + purple: '#703fec', |
| 85 | + purple100: '#c7bfff', |
| 86 | + purple200: '#a18fff', |
| 87 | + purple300: '#8461f7', |
| 88 | + purple400: '#703fec', |
| 89 | + purple500: '#582fc0', |
| 90 | + purple600: '#40199a', |
| 91 | + purple700: '#1f0066', |
| 92 | + red: '#cc0000', |
| 93 | + red100: '#cc0000', |
| 94 | + red200: '#a30000', |
| 95 | + red300: '#8b0000', |
| 96 | + red400: '#470000', |
| 97 | + red500: '#2c0000', |
| 98 | + }, |
| 99 | +}; |
15 | 100 |
|
16 | 101 | const palette = [ |
17 | | - pfPaletteColors.red, |
18 | | - pfPaletteColors.blue, |
19 | | - pfPaletteColors.green, |
20 | | - pfPaletteColors.gold, |
21 | | - pfPaletteColors.cyan, |
22 | | - pfPaletteColors.orange, |
23 | | - pfPaletteColors.lightGreen, |
24 | | - pfPaletteColors.purple, |
25 | | - pfPaletteColors.lightBlue, |
26 | | - pfPaletteColors.red700, |
27 | | - pfPaletteColors.blue700, |
28 | | - pfPaletteColors.green700, |
29 | | - pfPaletteColors.gold700, |
30 | | - pfPaletteColors.cyan700, |
31 | | - pfPaletteColors.orange700, |
32 | | - pfPaletteColors.lightGree7500, |
33 | | - pfPaletteColors.purple700, |
34 | | - pfPaletteColors.lightBlue700, |
35 | | - pfPaletteColors.red400, |
36 | | - pfPaletteColors.blue400, |
37 | | - pfPaletteColors.green400, |
38 | | - pfPaletteColors.gold400, |
39 | | - pfPaletteColors.cyan400, |
40 | | - pfPaletteColors.orange400, |
41 | | - pfPaletteColors.lightGree4500, |
42 | | - pfPaletteColors.purple400, |
43 | | - pfPaletteColors.lightBlue400, |
| 102 | + patternfly.pfPaletteColors.red, |
| 103 | + patternfly.pfPaletteColors.blue, |
| 104 | + patternfly.pfPaletteColors.green, |
| 105 | + patternfly.pfPaletteColors.gold, |
| 106 | + patternfly.pfPaletteColors.cyan, |
| 107 | + patternfly.pfPaletteColors.orange, |
| 108 | + patternfly.pfPaletteColors.lightGreen, |
| 109 | + patternfly.pfPaletteColors.purple, |
| 110 | + patternfly.pfPaletteColors.lightBlue, |
| 111 | + patternfly.pfPaletteColors.red700, |
| 112 | + patternfly.pfPaletteColors.blue700, |
| 113 | + patternfly.pfPaletteColors.green700, |
| 114 | + patternfly.pfPaletteColors.gold700, |
| 115 | + patternfly.pfPaletteColors.cyan700, |
| 116 | + patternfly.pfPaletteColors.orange700, |
| 117 | + patternfly.pfPaletteColors.lightGree7500, |
| 118 | + patternfly.pfPaletteColors.purple700, |
| 119 | + patternfly.pfPaletteColors.lightBlue700, |
| 120 | + patternfly.pfPaletteColors.red400, |
| 121 | + patternfly.pfPaletteColors.blue400, |
| 122 | + patternfly.pfPaletteColors.green400, |
| 123 | + patternfly.pfPaletteColors.gold400, |
| 124 | + patternfly.pfPaletteColors.cyan400, |
| 125 | + patternfly.pfPaletteColors.orange400, |
| 126 | + patternfly.pfPaletteColors.lightGree4500, |
| 127 | + patternfly.pfPaletteColors.purple400, |
| 128 | + patternfly.pfPaletteColors.lightBlue400, |
44 | 129 | ]; |
45 | 130 |
|
46 | 131 | export default { |
|
0 commit comments