KiCad PCB EDA Suite
Loading...
Searching...
No Matches
builtin_color_themes.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 Jon Evans <[email protected]>
5 * Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21// NOTE: This file should only be included in color_settings.cpp
22
23#ifndef _BUILTIN_COLOR_THEMES_H
24#define _BUILTIN_COLOR_THEMES_H
25
26#define CSS_COLOR( r, g, b, a ) COLOR4D().FromCSSRGBA( r, g, b, a )
27
28static const std::map<int, COLOR4D> s_defaultTheme =
29 {
30 { LAYER_SCHEMATIC_ANCHOR, CSS_COLOR( 0, 0, 255, 1 ) },
31 { LAYER_SCHEMATIC_AUX_ITEMS, CSS_COLOR( 0, 0, 0, 1 ) },
32 { LAYER_SCHEMATIC_BACKGROUND, CSS_COLOR( 245, 244, 239, 1 ) },
33 { LAYER_HOVERED, CSS_COLOR( 0, 0, 255, 1 ) },
34 { LAYER_BRIGHTENED, CSS_COLOR( 255, 0, 255, 1 ) },
35 { LAYER_BUS, CSS_COLOR( 0, 0, 132, 1 ) },
36 { LAYER_BUS_JUNCTION, CSS_COLOR( 0, 0, 132, 1 ) },
37 { LAYER_DEVICE_BACKGROUND, CSS_COLOR( 255, 255, 194, 1 ) },
38 { LAYER_DEVICE, CSS_COLOR( 132, 0, 0, 1 ) },
39 { LAYER_SCHEMATIC_CURSOR, CSS_COLOR( 15, 15, 15, 1 ) },
40 { LAYER_DNP_MARKER, CSS_COLOR( 220, 9, 13, 0.7 ) },
41 { LAYER_ERC_ERR, CSS_COLOR( 230, 9, 13, 0.8 ) },
42 { LAYER_ERC_WARN, CSS_COLOR( 209, 146, 0, 0.8 ) },
43 { LAYER_ERC_EXCLUSION, CSS_COLOR( 94, 194, 194, 0.8 ) },
44 { LAYER_FIELDS, CSS_COLOR( 132, 0, 132, 1 ) },
45 { LAYER_SCHEMATIC_GRID, CSS_COLOR( 181, 181, 181, 1 ) },
46 { LAYER_SCHEMATIC_GRID_AXES, CSS_COLOR( 0, 0, 132, 1 ) },
47 { LAYER_HIDDEN, CSS_COLOR( 94, 194, 194, 1 ) },
48 { LAYER_JUNCTION, CSS_COLOR( 0, 150, 0, 1 ) },
49 { LAYER_GLOBLABEL, CSS_COLOR( 132, 0, 0, 1 ) },
50 { LAYER_HIERLABEL, CSS_COLOR( 114, 86, 0, 1 ) },
51 { LAYER_LOCLABEL, CSS_COLOR( 15, 15, 15, 1 ) },
52 { LAYER_NETCLASS_REFS, CSS_COLOR( 72, 72, 72, 1 ) },
53 { LAYER_NOCONNECT, CSS_COLOR( 0, 0, 132, 1 ) },
54 { LAYER_NOTES, CSS_COLOR( 0, 0, 194, 1 ) },
55 { LAYER_PRIVATE_NOTES, CSS_COLOR( 72, 72, 255, 1 ) },
56 { LAYER_NOTES_BACKGROUND, CSS_COLOR( 0, 0, 0, 0 ) },
57 { LAYER_PIN, CSS_COLOR( 132, 0, 0, 1 ) },
58 { LAYER_PINNAM, CSS_COLOR( 0, 100, 100, 1 ) },
59 { LAYER_PINNUM, CSS_COLOR( 169, 0, 0, 1 ) },
60 { LAYER_REFERENCEPART, CSS_COLOR( 0, 100, 100, 1 ) },
61#ifdef __WXMAC__
62 // Try to mimic the system highlight color on Mac
63 { LAYER_SELECTION_SHADOWS, COLOR4D( .3, .7, 1.0, 0.6 ) },
64#else
65 { LAYER_SELECTION_SHADOWS, COLOR4D( .4, .7, 1.0, 0.8 ) },
66#endif
67 { LAYER_SHEET, CSS_COLOR( 132, 0, 0, 1 ) },
68 { LAYER_SHEET_BACKGROUND, CSS_COLOR( 255, 255, 255, 0 ) },
69 { LAYER_SHEETFILENAME, CSS_COLOR( 114, 86, 0, 1 ) },
70 { LAYER_SHEETFIELDS, CSS_COLOR( 132, 0, 132, 1 ) },
71 { LAYER_SHEETLABEL, CSS_COLOR( 0, 100, 100, 1 ) },
72 { LAYER_SHEETNAME, CSS_COLOR( 0, 100, 100, 1 ) },
73 { LAYER_VALUEPART, CSS_COLOR( 0, 100, 100, 1 ) },
74 { LAYER_WIRE, CSS_COLOR( 0, 150, 0, 1 ) },
75 { LAYER_SCHEMATIC_DRAWINGSHEET, CSS_COLOR( 132, 0, 0, 1 ) },
76 { LAYER_SCHEMATIC_PAGE_LIMITS, CSS_COLOR( 181, 181, 181, 1 ) },
77 { LAYER_OP_VOLTAGES, CSS_COLOR( 132, 0, 50, 1 ) },
78 { LAYER_OP_CURRENTS, CSS_COLOR( 224, 0, 12, 1 ) },
79
80 { LAYER_GERBVIEW_AXES, CSS_COLOR( 0, 0, 132, 1 ) },
81 { LAYER_GERBVIEW_BACKGROUND, CSS_COLOR( 0, 0, 0, 1 ) },
82 { LAYER_DCODES, CSS_COLOR( 255, 255, 255, 1 ) },
83 { LAYER_GERBVIEW_GRID, CSS_COLOR( 132, 132, 132, 1 ) },
84 { LAYER_NEGATIVE_OBJECTS, CSS_COLOR( 132, 132, 132, 1 ) },
85 { LAYER_GERBVIEW_DRAWINGSHEET, CSS_COLOR( 0, 0, 132, 1 ) },
86 { LAYER_GERBVIEW_PAGE_LIMITS, CSS_COLOR( 132, 132, 132, 1 ) },
87
88 { GERBVIEW_LAYER_ID_START, CSS_COLOR( 200, 52, 52, 1 ) },
89 { GERBVIEW_LAYER_ID_START + 1, CSS_COLOR( 127, 200, 127, 1 ) },
90 { GERBVIEW_LAYER_ID_START + 2, CSS_COLOR( 206, 125, 44, 1 ) },
91 { GERBVIEW_LAYER_ID_START + 3, CSS_COLOR( 79, 203, 203, 1 ) },
92 { GERBVIEW_LAYER_ID_START + 4, CSS_COLOR( 219, 98, 139, 1 ) },
93 { GERBVIEW_LAYER_ID_START + 5, CSS_COLOR( 167, 165, 198, 1 ) },
94 { GERBVIEW_LAYER_ID_START + 6, CSS_COLOR( 40, 204, 217, 1 ) },
95 { GERBVIEW_LAYER_ID_START + 7, CSS_COLOR( 232, 178, 167, 1 ) },
96 { GERBVIEW_LAYER_ID_START + 8, CSS_COLOR( 242, 237, 161, 1 ) },
97 { GERBVIEW_LAYER_ID_START + 9, CSS_COLOR( 141, 203, 129, 1 ) },
98 { GERBVIEW_LAYER_ID_START + 10, CSS_COLOR( 237, 124, 51, 1 ) },
99 { GERBVIEW_LAYER_ID_START + 11, CSS_COLOR( 91, 195, 235, 1 ) },
100 { GERBVIEW_LAYER_ID_START + 12, CSS_COLOR( 247, 111, 142, 1 ) },
101 { GERBVIEW_LAYER_ID_START + 13, CSS_COLOR( 77, 127, 196, 1 ) },
102 { GERBVIEW_LAYER_ID_START + 14, CSS_COLOR( 200, 52, 52, 1 ) },
103 { GERBVIEW_LAYER_ID_START + 15, CSS_COLOR( 127, 200, 127, 1 ) },
104 { GERBVIEW_LAYER_ID_START + 16, CSS_COLOR( 206, 125, 44, 1 ) },
105 { GERBVIEW_LAYER_ID_START + 17, CSS_COLOR( 79, 203, 203, 1 ) },
106 { GERBVIEW_LAYER_ID_START + 18, CSS_COLOR( 219, 98, 139, 1 ) },
107 { GERBVIEW_LAYER_ID_START + 19, CSS_COLOR( 167, 165, 198, 1 ) },
108 { GERBVIEW_LAYER_ID_START + 20, CSS_COLOR( 40, 204, 217, 1 ) },
109 { GERBVIEW_LAYER_ID_START + 21, CSS_COLOR( 232, 178, 167, 1 ) },
110 { GERBVIEW_LAYER_ID_START + 22, CSS_COLOR( 242, 237, 161, 1 ) },
111 { GERBVIEW_LAYER_ID_START + 23, CSS_COLOR( 141, 203, 129, 1 ) },
112 { GERBVIEW_LAYER_ID_START + 24, CSS_COLOR( 237, 124, 51, 1 ) },
113 { GERBVIEW_LAYER_ID_START + 25, CSS_COLOR( 91, 195, 235, 1 ) },
114 { GERBVIEW_LAYER_ID_START + 26, CSS_COLOR( 247, 111, 142, 1 ) },
115 { GERBVIEW_LAYER_ID_START + 27, CSS_COLOR( 77, 127, 196, 1 ) },
116 { GERBVIEW_LAYER_ID_START + 28, CSS_COLOR( 200, 52, 52, 1 ) },
117 { GERBVIEW_LAYER_ID_START + 29, CSS_COLOR( 127, 200, 127, 1 ) },
118 { GERBVIEW_LAYER_ID_START + 30, CSS_COLOR( 206, 125, 44, 1 ) },
119 { GERBVIEW_LAYER_ID_START + 31, CSS_COLOR( 79, 203, 203, 1 ) },
120 { GERBVIEW_LAYER_ID_START + 32, CSS_COLOR( 219, 98, 139, 1 ) },
121 { GERBVIEW_LAYER_ID_START + 33, CSS_COLOR( 167, 165, 198, 1 ) },
122 { GERBVIEW_LAYER_ID_START + 34, CSS_COLOR( 40, 204, 217, 1 ) },
123 { GERBVIEW_LAYER_ID_START + 35, CSS_COLOR( 232, 178, 167, 1 ) },
124 { GERBVIEW_LAYER_ID_START + 36, CSS_COLOR( 242, 237, 161, 1 ) },
125 { GERBVIEW_LAYER_ID_START + 37, CSS_COLOR( 141, 203, 129, 1 ) },
126 { GERBVIEW_LAYER_ID_START + 38, CSS_COLOR( 237, 124, 51, 1 ) },
127 { GERBVIEW_LAYER_ID_START + 39, CSS_COLOR( 91, 195, 235, 1 ) },
128 { GERBVIEW_LAYER_ID_START + 40, CSS_COLOR( 247, 111, 142, 1 ) },
129 { GERBVIEW_LAYER_ID_START + 41, CSS_COLOR( 77, 127, 196, 1 ) },
130 { GERBVIEW_LAYER_ID_START + 42, CSS_COLOR( 200, 52, 52, 1 ) },
131 { GERBVIEW_LAYER_ID_START + 43, CSS_COLOR( 127, 200, 127, 1 ) },
132 { GERBVIEW_LAYER_ID_START + 44, CSS_COLOR( 206, 125, 44, 1 ) },
133 { GERBVIEW_LAYER_ID_START + 45, CSS_COLOR( 79, 203, 203, 1 ) },
134 { GERBVIEW_LAYER_ID_START + 46, CSS_COLOR( 219, 98, 139, 1 ) },
135 { GERBVIEW_LAYER_ID_START + 47, CSS_COLOR( 167, 165, 198, 1 ) },
136 { GERBVIEW_LAYER_ID_START + 48, CSS_COLOR( 40, 204, 217, 1 ) },
137 { GERBVIEW_LAYER_ID_START + 49, CSS_COLOR( 232, 178, 167, 1 ) },
138 { GERBVIEW_LAYER_ID_START + 50, CSS_COLOR( 242, 237, 161, 1 ) },
139 { GERBVIEW_LAYER_ID_START + 51, CSS_COLOR( 141, 203, 129, 1 ) },
140 { GERBVIEW_LAYER_ID_START + 52, CSS_COLOR( 237, 124, 51, 1 ) },
141 { GERBVIEW_LAYER_ID_START + 53, CSS_COLOR( 91, 195, 235, 1 ) },
142 { GERBVIEW_LAYER_ID_START + 54, CSS_COLOR( 247, 111, 142, 1 ) },
143 { GERBVIEW_LAYER_ID_START + 55, CSS_COLOR( 77, 127, 196, 1 ) },
144 { GERBVIEW_LAYER_ID_START + 56, CSS_COLOR( 200, 52, 52, 1 ) },
145 { GERBVIEW_LAYER_ID_START + 57, CSS_COLOR( 127, 200, 127, 1 ) },
146 { GERBVIEW_LAYER_ID_START + 58, CSS_COLOR( 206, 125, 44, 1 ) },
147 { GERBVIEW_LAYER_ID_START + 59, CSS_COLOR( 79, 203, 203, 1 ) },
148
149 { LAYER_ANCHOR, CSS_COLOR( 255, 38, 226, 1 ) },
150 { LAYER_LOCKED_ITEM_SHADOW, CSS_COLOR( 255, 38, 226, 0.5 ) },
151 { LAYER_CONFLICTS_SHADOW, CSS_COLOR( 255, 0, 05, 0.5 ) },
152 { LAYER_AUX_ITEMS, CSS_COLOR( 255, 255, 255, 1 ) },
153 { LAYER_PCB_BACKGROUND, CSS_COLOR( 0, 16, 35, 1 ) },
154 { LAYER_CURSOR, CSS_COLOR( 255, 255, 255, 1 ) },
155 { LAYER_DRC_ERROR, CSS_COLOR( 215, 91, 107, 0.8 ) },
156 { LAYER_DRC_WARNING, CSS_COLOR( 255, 208, 66, 0.8 ) },
157 { LAYER_DRC_EXCLUSION, CSS_COLOR( 255, 255, 255, 0.8 ) },
158 { LAYER_HIDDEN_TEXT, CSS_COLOR( 132, 132, 132, 1 ) },
159 { LAYER_GRID, CSS_COLOR( 132, 132, 132, 1 ) },
160 { LAYER_GRID_AXES, CSS_COLOR( 194, 194, 194, 1 ) },
161 { LAYER_PAD_PLATEDHOLES, CSS_COLOR( 194, 194, 0, 1 ) },
162 { LAYER_PADS_TH, CSS_COLOR( 227, 183, 46, 1 ) },
163 { LAYER_NON_PLATEDHOLES, CSS_COLOR( 26, 196, 210, 1 ) },
164 { LAYER_RATSNEST, CSS_COLOR( 0, 248, 255, 0.35 ) },
165 { LAYER_SELECT_OVERLAY, CSS_COLOR( 4, 255, 67, 1 ) },
166 { LAYER_VIA_THROUGH, CSS_COLOR( 236, 236, 236, 1 ) },
167 { LAYER_VIA_BBLIND, CSS_COLOR( 187, 151, 38, 1 ) },
168 { LAYER_VIA_HOLES, CSS_COLOR( 227, 183, 46, 1 ) },
169 { LAYER_VIA_MICROVIA, CSS_COLOR( 0, 132, 132, 1 ) },
170 { LAYER_DRAWINGSHEET, CSS_COLOR( 200, 114, 171, 1 ) },
171 { LAYER_PAGE_LIMITS, CSS_COLOR( 132, 132, 132, 1 ) },
172
173 { F_Cu, CSS_COLOR( 200, 52, 52, 1 ) },
174 { In1_Cu, CSS_COLOR( 127, 200, 127, 1 ) },
175 { In2_Cu, CSS_COLOR( 206, 125, 44, 1 ) },
176 { In3_Cu, CSS_COLOR( 79, 203, 203, 1 ) },
177 { In4_Cu, CSS_COLOR( 219, 98, 139, 1 ) },
178 { In5_Cu, CSS_COLOR( 167, 165, 198, 1 ) },
179 { In6_Cu, CSS_COLOR( 40, 204, 217, 1 ) },
180 { In7_Cu, CSS_COLOR( 232, 178, 167, 1 ) },
181 { In8_Cu, CSS_COLOR( 242, 237, 161, 1 ) },
182 { In9_Cu, CSS_COLOR( 141, 203, 129, 1 ) },
183 { In10_Cu, CSS_COLOR( 237, 124, 51, 1 ) },
184 { In11_Cu, CSS_COLOR( 91, 195, 235, 1 ) },
185 { In12_Cu, CSS_COLOR( 247, 111, 142, 1 ) },
186 { In13_Cu, CSS_COLOR( 167, 165, 198, 1 ) },
187 { In14_Cu, CSS_COLOR( 40, 204, 217, 1 ) },
188 { In15_Cu, CSS_COLOR( 232, 178, 167, 1 ) },
189 { In16_Cu, CSS_COLOR( 242, 237, 161, 1 ) },
190 { In17_Cu, CSS_COLOR( 237, 124, 51, 1 ) },
191 { In18_Cu, CSS_COLOR( 91, 195, 235, 1 ) },
192 { In19_Cu, CSS_COLOR( 247, 111, 142, 1 ) },
193 { In20_Cu, CSS_COLOR( 167, 165, 198, 1 ) },
194 { In21_Cu, CSS_COLOR( 40, 204, 217, 1 ) },
195 { In22_Cu, CSS_COLOR( 232, 178, 167, 1 ) },
196 { In23_Cu, CSS_COLOR( 242, 237, 161, 1 ) },
197 { In24_Cu, CSS_COLOR( 237, 124, 51, 1 ) },
198 { In25_Cu, CSS_COLOR( 91, 195, 235, 1 ) },
199 { In26_Cu, CSS_COLOR( 247, 111, 142, 1 ) },
200 { In27_Cu, CSS_COLOR( 167, 165, 198, 1 ) },
201 { In28_Cu, CSS_COLOR( 40, 204, 217, 1 ) },
202 { In29_Cu, CSS_COLOR( 232, 178, 167, 1 ) },
203 { In30_Cu, CSS_COLOR( 242, 237, 161, 1 ) },
204 { B_Cu, CSS_COLOR( 77, 127, 196, 1 ) },
205
206 { B_Adhes, CSS_COLOR( 0, 0, 132, 1 ) },
207 { F_Adhes, CSS_COLOR( 132, 0, 132, 1 ) },
208 { B_Paste, CSS_COLOR( 0, 194, 194, 0.9 ) },
209 { F_Paste, CSS_COLOR( 180, 160, 154, 0.9 ) },
210 { B_SilkS, CSS_COLOR( 232, 178, 167, 1 ) },
211 { F_SilkS, CSS_COLOR( 242, 237, 161, 1 ) },
212 { B_Mask, CSS_COLOR( 2, 255, 238, 0.4 ) },
213 { F_Mask, CSS_COLOR( 216, 100, 255, 0.4 ) },
214 { Dwgs_User, CSS_COLOR( 194, 194, 194, 1 ) },
215 { Cmts_User, CSS_COLOR( 89, 148, 220, 1 ) },
216 { Eco1_User, CSS_COLOR( 180, 219, 210, 1 ) },
217 { Eco2_User, CSS_COLOR( 216, 200, 82, 1 ) },
218 { Edge_Cuts, CSS_COLOR( 208, 210, 205, 1 ) },
219 { Margin, CSS_COLOR( 255, 38, 226, 1 ) },
220 { B_CrtYd, CSS_COLOR( 38, 233, 255, 1 ) },
221 { F_CrtYd, CSS_COLOR( 255, 38, 226, 1 ) },
222 { B_Fab, CSS_COLOR( 88, 93, 132, 1 ) },
223 { F_Fab, CSS_COLOR( 175, 175, 175, 1 ) },
224 { User_1, CSS_COLOR( 194, 194, 194, 1 ) },
225 { User_2, CSS_COLOR( 89, 148, 220, 1 ) },
226 { User_3, CSS_COLOR( 180, 219, 210, 1 ) },
227 { User_4, CSS_COLOR( 216, 200, 82, 1 ) },
228 { User_5, CSS_COLOR( 194, 194, 194, 1 ) },
229 { User_6, CSS_COLOR( 89, 148, 220, 1 ) },
230 { User_7, CSS_COLOR( 180, 219, 210, 1 ) },
231 { User_8, CSS_COLOR( 216, 200, 82, 1 ) },
232 { User_9, CSS_COLOR( 232, 178, 167, 1 ) },
233
234 { LAYER_3D_BACKGROUND_BOTTOM, COLOR4D( 0.4, 0.4, 0.5, 1.0 ) },
235 { LAYER_3D_BACKGROUND_TOP, COLOR4D( 0.8, 0.8, 0.9, 1.0 ) },
236 { LAYER_3D_BOARD, COLOR4D( 0.2, 0.17, 0.09, 0.9 ) },
237 { LAYER_3D_COPPER_TOP, COLOR4D( 0.7, 0.61, 0.0, 1.0 ) },
238 { LAYER_3D_SILKSCREEN_BOTTOM, COLOR4D( 0.9, 0.9, 0.9, 1.0 ) },
239 { LAYER_3D_SILKSCREEN_TOP, COLOR4D( 0.9, 0.9, 0.9, 1.0 ) },
240 { LAYER_3D_SOLDERMASK_BOTTOM, COLOR4D( 0.08, 0.2, 0.14, 0.83 ) },
241 { LAYER_3D_SOLDERMASK_TOP, COLOR4D( 0.08, 0.2, 0.14, 0.83 ) },
242 { LAYER_3D_SOLDERPASTE, COLOR4D( 0.5, 0.5, 0.5, 1.0 ) }
243 };
244
245
246static const std::map<int, COLOR4D> s_classicTheme =
247 {
248 { LAYER_SCHEMATIC_ANCHOR, CSS_COLOR( 0, 0, 255, 1 ) },
249 { LAYER_SCHEMATIC_AUX_ITEMS, COLOR4D( BLACK ) },
250 { LAYER_SCHEMATIC_BACKGROUND, COLOR4D( WHITE ) },
251 { LAYER_HOVERED, COLOR4D( BLUE ) },
252 { LAYER_BRIGHTENED, COLOR4D( PUREMAGENTA ) },
253 { LAYER_BUS, COLOR4D( BLUE ) },
254 { LAYER_BUS_JUNCTION, COLOR4D( BLUE ) },
255 { LAYER_DEVICE_BACKGROUND, COLOR4D( LIGHTYELLOW ) },
256 { LAYER_DEVICE, COLOR4D( RED ) },
257 { LAYER_SCHEMATIC_CURSOR, COLOR4D( BLACK ) },
258 { LAYER_DNP_MARKER, COLOR4D( PURERED ).WithAlpha( 0.7 ) },
259 { LAYER_ERC_ERR, COLOR4D( PURERED ).WithAlpha( 0.8 ) },
260 { LAYER_ERC_WARN, COLOR4D( PUREGREEN ).WithAlpha( 0.8 ) },
261 { LAYER_ERC_EXCLUSION, COLOR4D( LIGHTGRAY ) },
262 { LAYER_FIELDS, COLOR4D( MAGENTA ) },
263 { LAYER_SCHEMATIC_GRID, COLOR4D( DARKGRAY ) },
264 { LAYER_SCHEMATIC_GRID_AXES, COLOR4D( BLUE ) },
265 { LAYER_HIDDEN, COLOR4D( LIGHTGRAY ) },
266 { LAYER_JUNCTION, COLOR4D( GREEN ) },
267 { LAYER_GLOBLABEL, COLOR4D( RED ) },
268 { LAYER_HIERLABEL, COLOR4D( BROWN ) },
269 { LAYER_LOCLABEL, COLOR4D( BLACK ) },
270 { LAYER_NETCLASS_REFS, COLOR4D( BLACK ) },
271 { LAYER_NOCONNECT, COLOR4D( BLUE ) },
272 { LAYER_NOTES, COLOR4D( LIGHTBLUE ) },
273 { LAYER_PRIVATE_NOTES, COLOR4D( LIGHTBLUE ) },
275 { LAYER_PIN, COLOR4D( RED ) },
276 { LAYER_PINNAM, COLOR4D( CYAN ) },
277 { LAYER_PINNUM, COLOR4D( RED ) },
278 { LAYER_REFERENCEPART, COLOR4D( CYAN ) },
279#ifdef __WXMAC__
280 // Macs look better with a lighter shadow
281 { LAYER_SELECTION_SHADOWS, COLOR4D( .78, .92, 1.0, 0.8 ) },
282#else
283 { LAYER_SELECTION_SHADOWS, COLOR4D( .4, .7, 1.0, 0.8 ) },
284#endif
285 { LAYER_SHEET, COLOR4D( MAGENTA ) },
286 { LAYER_SHEET_BACKGROUND, COLOR4D( WHITE ).WithAlpha( 0.0 ) },
287 { LAYER_SHEETFILENAME, COLOR4D( BROWN ) },
288 { LAYER_SHEETFIELDS, COLOR4D( MAGENTA ) },
289 { LAYER_SHEETLABEL, COLOR4D( CYAN ) },
290 { LAYER_SHEETNAME, COLOR4D( CYAN ) },
291 { LAYER_VALUEPART, COLOR4D( CYAN ) },
292 { LAYER_WIRE, COLOR4D( GREEN ) },
293 { LAYER_SCHEMATIC_DRAWINGSHEET, COLOR4D( RED ) },
294 { LAYER_OP_VOLTAGES, COLOR4D( DARKMAGENTA ) },
295 { LAYER_OP_CURRENTS, COLOR4D( RED ) },
296
297 { LAYER_GERBVIEW_AXES, COLOR4D( BLUE ) },
298 { LAYER_GERBVIEW_BACKGROUND, COLOR4D( BLACK ) },
299 { LAYER_DCODES, COLOR4D( WHITE ) },
300 { LAYER_GERBVIEW_GRID, COLOR4D( MAGENTA ) },
301 { LAYER_NEGATIVE_OBJECTS, COLOR4D( DARKGRAY ) },
302 { LAYER_GERBVIEW_DRAWINGSHEET, COLOR4D( DARKRED ) },
303 { LAYER_GERBVIEW_PAGE_LIMITS, COLOR4D( MAGENTA ) },
304
305 { GERBVIEW_LAYER_ID_START, COLOR4D( RED ) },
306 { GERBVIEW_LAYER_ID_START + 1, COLOR4D( YELLOW ) },
307 { GERBVIEW_LAYER_ID_START + 2, COLOR4D( LIGHTMAGENTA ) },
308 { GERBVIEW_LAYER_ID_START + 3, COLOR4D( LIGHTRED ) },
309 { GERBVIEW_LAYER_ID_START + 4, COLOR4D( CYAN ) },
310 { GERBVIEW_LAYER_ID_START + 5, COLOR4D( GREEN ) },
311 { GERBVIEW_LAYER_ID_START + 6, COLOR4D( BLUE ) },
312 { GERBVIEW_LAYER_ID_START + 7, COLOR4D( DARKGRAY ) },
313 { GERBVIEW_LAYER_ID_START + 8, COLOR4D( MAGENTA ) },
314 { GERBVIEW_LAYER_ID_START + 9, COLOR4D( LIGHTGRAY ) },
315 { GERBVIEW_LAYER_ID_START + 10, COLOR4D( MAGENTA ) },
316 { GERBVIEW_LAYER_ID_START + 11, COLOR4D( RED ) },
317 { GERBVIEW_LAYER_ID_START + 12, COLOR4D( BROWN ) },
318 { GERBVIEW_LAYER_ID_START + 13, COLOR4D( LIGHTGRAY ) },
319 { GERBVIEW_LAYER_ID_START + 14, COLOR4D( BLUE ) },
320 { GERBVIEW_LAYER_ID_START + 15, COLOR4D( GREEN ) },
321 { GERBVIEW_LAYER_ID_START + 16, COLOR4D( RED ) },
322 { GERBVIEW_LAYER_ID_START + 17, COLOR4D( YELLOW ) },
323 { GERBVIEW_LAYER_ID_START + 18, COLOR4D( LIGHTMAGENTA ) },
324 { GERBVIEW_LAYER_ID_START + 19, COLOR4D( LIGHTRED ) },
325 { GERBVIEW_LAYER_ID_START + 20, COLOR4D( CYAN ) },
326 { GERBVIEW_LAYER_ID_START + 21, COLOR4D( GREEN ) },
327 { GERBVIEW_LAYER_ID_START + 22, COLOR4D( BLUE ) },
328 { GERBVIEW_LAYER_ID_START + 23, COLOR4D( DARKGRAY ) },
329 { GERBVIEW_LAYER_ID_START + 24, COLOR4D( MAGENTA ) },
330 { GERBVIEW_LAYER_ID_START + 25, COLOR4D( LIGHTGRAY ) },
331 { GERBVIEW_LAYER_ID_START + 26, COLOR4D( MAGENTA ) },
332 { GERBVIEW_LAYER_ID_START + 27, COLOR4D( RED ) },
333 { GERBVIEW_LAYER_ID_START + 28, COLOR4D( BROWN ) },
334 { GERBVIEW_LAYER_ID_START + 29, COLOR4D( LIGHTGRAY ) },
335 { GERBVIEW_LAYER_ID_START + 30, COLOR4D( BLUE ) },
336 { GERBVIEW_LAYER_ID_START + 31, COLOR4D( GREEN ) },
337 { GERBVIEW_LAYER_ID_START + 32, COLOR4D( RED ) },
338 { GERBVIEW_LAYER_ID_START + 33, COLOR4D( YELLOW ) },
339 { GERBVIEW_LAYER_ID_START + 34, COLOR4D( LIGHTMAGENTA ) },
340 { GERBVIEW_LAYER_ID_START + 35, COLOR4D( LIGHTRED ) },
341 { GERBVIEW_LAYER_ID_START + 36, COLOR4D( CYAN ) },
342 { GERBVIEW_LAYER_ID_START + 37, COLOR4D( GREEN ) },
343 { GERBVIEW_LAYER_ID_START + 38, COLOR4D( BLUE ) },
344 { GERBVIEW_LAYER_ID_START + 39, COLOR4D( DARKGRAY ) },
345 { GERBVIEW_LAYER_ID_START + 40, COLOR4D( MAGENTA ) },
346 { GERBVIEW_LAYER_ID_START + 41, COLOR4D( LIGHTGRAY ) },
347 { GERBVIEW_LAYER_ID_START + 42, COLOR4D( MAGENTA ) },
348 { GERBVIEW_LAYER_ID_START + 43, COLOR4D( RED ) },
349 { GERBVIEW_LAYER_ID_START + 44, COLOR4D( BROWN ) },
350 { GERBVIEW_LAYER_ID_START + 45, COLOR4D( LIGHTGRAY ) },
351 { GERBVIEW_LAYER_ID_START + 46, COLOR4D( BLUE ) },
352 { GERBVIEW_LAYER_ID_START + 47, COLOR4D( GREEN ) },
353 { GERBVIEW_LAYER_ID_START + 48, COLOR4D( RED ) },
354 { GERBVIEW_LAYER_ID_START + 49, COLOR4D( YELLOW ) },
355 { GERBVIEW_LAYER_ID_START + 50, COLOR4D( LIGHTMAGENTA ) },
356 { GERBVIEW_LAYER_ID_START + 51, COLOR4D( LIGHTRED ) },
357 { GERBVIEW_LAYER_ID_START + 52, COLOR4D( CYAN ) },
358 { GERBVIEW_LAYER_ID_START + 53, COLOR4D( GREEN ) },
359 { GERBVIEW_LAYER_ID_START + 54, COLOR4D( BLUE ) },
360 { GERBVIEW_LAYER_ID_START + 55, COLOR4D( DARKGRAY ) },
361 { GERBVIEW_LAYER_ID_START + 56, COLOR4D( MAGENTA ) },
362 { GERBVIEW_LAYER_ID_START + 57, COLOR4D( LIGHTGRAY ) },
363 { GERBVIEW_LAYER_ID_START + 58, COLOR4D( MAGENTA ) },
364 { GERBVIEW_LAYER_ID_START + 59, COLOR4D( RED ) },
365
366 { LAYER_ANCHOR, COLOR4D( BLUE ) },
367 { LAYER_LOCKED_ITEM_SHADOW, COLOR4D( BLUE ).WithAlpha( 0.6 ) },
368 { LAYER_CONFLICTS_SHADOW, COLOR4D( RED ).WithAlpha( 0.5 ) },
369 { LAYER_AUX_ITEMS, COLOR4D( WHITE ) },
370 { LAYER_PCB_BACKGROUND, COLOR4D( BLACK ) },
371 { LAYER_CURSOR, COLOR4D( WHITE ) },
372 { LAYER_DRC_ERROR, COLOR4D( PURERED ).WithAlpha( 0.8 ) },
373 { LAYER_DRC_WARNING, COLOR4D( PUREGREEN ).WithAlpha( 0.8 ) },
374 { LAYER_DRC_EXCLUSION, COLOR4D( WHITE ) },
375 { LAYER_HIDDEN_TEXT, COLOR4D( LIGHTGRAY ) },
376 { LAYER_GRID, COLOR4D( DARKGRAY ) },
377 { LAYER_GRID_AXES, COLOR4D( BLUE ) },
378 { LAYER_PAD_PLATEDHOLES, COLOR4D( YELLOW ) },
379 { LAYER_PADS_TH, COLOR4D( YELLOW ) },
380 { LAYER_NON_PLATEDHOLES, COLOR4D( YELLOW ) },
381 { LAYER_RATSNEST, COLOR4D( WHITE ) },
382 { LAYER_SELECT_OVERLAY, COLOR4D( PUREGREEN ) },
383 { LAYER_VIA_THROUGH, COLOR4D( LIGHTGRAY ) },
384 { LAYER_VIA_BBLIND, COLOR4D( BROWN ) },
385 { LAYER_VIA_HOLES, COLOR4D( 0.5, 0.4, 0, 0.8 ) },
386 { LAYER_VIA_MICROVIA, COLOR4D( CYAN ) },
387 { LAYER_DRAWINGSHEET, COLOR4D( DARKRED ) },
388 { LAYER_PAGE_LIMITS, COLOR4D( DARKGRAY) },
389
390 { F_Cu, COLOR4D( RED ) },
391 { In1_Cu, COLOR4D( YELLOW ) },
392 { In2_Cu, COLOR4D( LIGHTMAGENTA ) },
393 { In3_Cu, COLOR4D( LIGHTRED ) },
394 { In4_Cu, COLOR4D( CYAN ) },
395 { In5_Cu, COLOR4D( GREEN ) },
396 { In6_Cu, COLOR4D( BLUE ) },
397 { In7_Cu, COLOR4D( DARKGRAY ) },
398 { In8_Cu, COLOR4D( MAGENTA ) },
399 { In9_Cu, COLOR4D( LIGHTGRAY ) },
400 { In10_Cu, COLOR4D( MAGENTA ) },
401 { In11_Cu, COLOR4D( RED ) },
402 { In12_Cu, COLOR4D( BROWN ) },
403 { In13_Cu, COLOR4D( LIGHTGRAY ) },
404 { In14_Cu, COLOR4D( BLUE ) },
405 { In15_Cu, COLOR4D( GREEN ) },
406 { In16_Cu, COLOR4D( RED ) },
407 { In17_Cu, COLOR4D( YELLOW ) },
408 { In18_Cu, COLOR4D( LIGHTMAGENTA ) },
409 { In19_Cu, COLOR4D( LIGHTRED ) },
410 { In20_Cu, COLOR4D( CYAN ) },
411 { In21_Cu, COLOR4D( GREEN ) },
412 { In22_Cu, COLOR4D( BLUE ) },
413 { In23_Cu, COLOR4D( DARKGRAY ) },
414 { In24_Cu, COLOR4D( MAGENTA ) },
415 { In25_Cu, COLOR4D( LIGHTGRAY ) },
416 { In26_Cu, COLOR4D( MAGENTA ) },
417 { In27_Cu, COLOR4D( RED ) },
418 { In28_Cu, COLOR4D( BROWN ) },
419 { In29_Cu, COLOR4D( LIGHTGRAY ) },
420 { In30_Cu, COLOR4D( BLUE ) },
421 { B_Cu, COLOR4D( GREEN ) },
422
423 { B_Adhes, COLOR4D( BLUE ) },
424 { F_Adhes, COLOR4D( MAGENTA ) },
425 { B_Paste, COLOR4D( LIGHTCYAN ) },
426 { F_Paste, COLOR4D( RED ) },
427 { B_SilkS, COLOR4D( MAGENTA ) },
428 { F_SilkS, COLOR4D( CYAN ) },
429 { B_Mask, COLOR4D( BROWN ) },
430 { F_Mask, COLOR4D( MAGENTA ) },
431 { Dwgs_User, COLOR4D( LIGHTGRAY ) },
432 { Cmts_User, COLOR4D( BLUE ) },
433 { Eco1_User, COLOR4D( GREEN ) },
434 { Eco2_User, COLOR4D( YELLOW ) },
435 { Edge_Cuts, COLOR4D( YELLOW ) },
436 { Margin, COLOR4D( LIGHTMAGENTA ) },
437 { B_CrtYd, COLOR4D( DARKGRAY ) },
438 { F_CrtYd, COLOR4D( LIGHTGRAY ) },
439 { B_Fab, COLOR4D( BLUE ) },
440 { F_Fab, COLOR4D( DARKGRAY ) },
441 { User_1, COLOR4D( BLUE ) },
442 { User_2, COLOR4D( BLUE ) },
443 { User_3, COLOR4D( BLUE ) },
444 { User_4, COLOR4D( BLUE ) },
445 { User_5, COLOR4D( BLUE ) },
446 { User_6, COLOR4D( BLUE ) },
447 { User_7, COLOR4D( BLUE ) },
448 { User_8, COLOR4D( BLUE ) },
449 { User_9, COLOR4D( BLUE ) },
450
451 { LAYER_3D_BACKGROUND_BOTTOM, COLOR4D( 0.4, 0.4, 0.5, 1.0 ) },
452 { LAYER_3D_BACKGROUND_TOP, COLOR4D( 0.8, 0.8, 0.9, 1.0 ) },
453 { LAYER_3D_BOARD, COLOR4D( 0.2, 0.17, 0.09, 0.9 ) },
454 { LAYER_3D_COPPER_TOP, COLOR4D( 0.7, 0.61, 0.0, 1.0 ) },
455 { LAYER_3D_SILKSCREEN_BOTTOM, COLOR4D( 0.9, 0.9, 0.9, 1.0 ) },
456 { LAYER_3D_SILKSCREEN_TOP, COLOR4D( 0.9, 0.9, 0.9, 1.0 ) },
457 { LAYER_3D_SOLDERMASK_BOTTOM, COLOR4D( 0.08, 0.2, 0.14, 0.83 ) },
458 { LAYER_3D_SOLDERMASK_TOP, COLOR4D( 0.08, 0.2, 0.14, 0.83 ) },
459 { LAYER_3D_SOLDERPASTE, COLOR4D( 0.5, 0.5, 0.5, 1.0 ) }
460 };
461
462#endif
#define CSS_COLOR(r, g, b, a)
static const std::map< int, COLOR4D > s_defaultTheme
static const std::map< int, COLOR4D > s_classicTheme
@ BROWN
Definition: color4d.h:61
@ LIGHTBLUE
Definition: color4d.h:62
@ WHITE
Definition: color4d.h:48
@ BLUE
Definition: color4d.h:56
@ LIGHTGRAY
Definition: color4d.h:47
@ DARKGRAY
Definition: color4d.h:46
@ MAGENTA
Definition: color4d.h:60
@ DARKMAGENTA
Definition: color4d.h:54
@ LIGHTYELLOW
Definition: color4d.h:49
@ PURERED
Definition: color4d.h:71
@ UNSPECIFIED_COLOR
Definition: color4d.h:43
@ GREEN
Definition: color4d.h:57
@ CYAN
Definition: color4d.h:58
@ DARKRED
Definition: color4d.h:53
@ LIGHTCYAN
Definition: color4d.h:64
@ PUREGREEN
Definition: color4d.h:69
@ LIGHTMAGENTA
Definition: color4d.h:66
@ YELLOW
Definition: color4d.h:67
@ LIGHTRED
Definition: color4d.h:65
@ BLACK
Definition: color4d.h:44
@ PUREMAGENTA
Definition: color4d.h:72
@ RED
Definition: color4d.h:59
@ LAYER_GERBVIEW_DRAWINGSHEET
Definition: layer_ids.h:432
@ GERBVIEW_LAYER_ID_START
Definition: layer_ids.h:422
@ LAYER_GERBVIEW_BACKGROUND
Definition: layer_ids.h:431
@ LAYER_DCODES
Definition: layer_ids.h:427
@ LAYER_NEGATIVE_OBJECTS
Definition: layer_ids.h:428
@ LAYER_GERBVIEW_PAGE_LIMITS
Definition: layer_ids.h:433
@ LAYER_GERBVIEW_AXES
Definition: layer_ids.h:430
@ LAYER_GERBVIEW_GRID
Definition: layer_ids.h:429
@ LAYER_3D_SOLDERMASK_TOP
Definition: layer_ids.h:458
@ LAYER_3D_BACKGROUND_TOP
Definition: layer_ids.h:451
@ LAYER_3D_SOLDERMASK_BOTTOM
Definition: layer_ids.h:457
@ LAYER_3D_BOARD
Definition: layer_ids.h:452
@ LAYER_3D_SILKSCREEN_TOP
Definition: layer_ids.h:456
@ LAYER_3D_COPPER_TOP
Definition: layer_ids.h:453
@ LAYER_3D_SOLDERPASTE
Definition: layer_ids.h:459
@ LAYER_3D_BACKGROUND_BOTTOM
Definition: layer_ids.h:450
@ LAYER_3D_SILKSCREEN_BOTTOM
Definition: layer_ids.h:455
@ LAYER_GRID
Definition: layer_ids.h:209
@ LAYER_PAGE_LIMITS
color for drawing the page extents (visibility stored in PCBNEW_SETTINGS::m_ShowPageLimits)
Definition: layer_ids.h:253
@ LAYER_LOCKED_ITEM_SHADOW
shadow layer for locked items
Definition: layer_ids.h:243
@ LAYER_GRID_AXES
Definition: layer_ids.h:210
@ LAYER_CONFLICTS_SHADOW
shadow layer for items flagged conficting
Definition: layer_ids.h:245
@ LAYER_NON_PLATEDHOLES
handle color for not plated holes (holes, not pads)
Definition: layer_ids.h:201
@ LAYER_DRAWINGSHEET
drawingsheet frame and titleblock
Definition: layer_ids.h:221
@ LAYER_DRC_EXCLUSION
layer for drc markers which have been individually excluded
Definition: layer_ids.h:240
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:224
@ LAYER_DRC_WARNING
layer for drc markers with SEVERITY_WARNING
Definition: layer_ids.h:239
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:218
@ LAYER_HIDDEN_TEXT
text marked as invisible
Definition: layer_ids.h:204
@ LAYER_CURSOR
PCB cursor.
Definition: layer_ids.h:225
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc)
Definition: layer_ids.h:226
@ LAYER_RATSNEST
Definition: layer_ids.h:208
@ LAYER_ANCHOR
anchor of items having an anchor point (texts, footprints)
Definition: layer_ids.h:205
@ LAYER_PADS_TH
multilayer pads, usually with holes
Definition: layer_ids.h:217
@ LAYER_VIA_HOLES
to draw via holes (pad holes do not use this layer)
Definition: layer_ids.h:219
@ LAYER_VIA_MICROVIA
to draw micro vias
Definition: layer_ids.h:198
@ LAYER_SELECT_OVERLAY
currently selected items overlay
Definition: layer_ids.h:223
@ LAYER_VIA_THROUGH
to draw usual through hole vias
Definition: layer_ids.h:200
@ LAYER_DRC_ERROR
layer for drc markers with SEVERITY_ERROR
Definition: layer_ids.h:220
@ LAYER_VIA_BBLIND
to draw blind/buried vias
Definition: layer_ids.h:199
@ LAYER_SHEETNAME
Definition: layer_ids.h:375
@ LAYER_ERC_WARN
Definition: layer_ids.h:382
@ LAYER_SCHEMATIC_ANCHOR
Definition: layer_ids.h:399
@ LAYER_SHEETLABEL
Definition: layer_ids.h:378
@ LAYER_PINNUM
Definition: layer_ids.h:362
@ LAYER_DEVICE
Definition: layer_ids.h:369
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:386
@ LAYER_BRIGHTENED
Definition: layer_ids.h:392
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:384
@ LAYER_HIDDEN
Definition: layer_ids.h:393
@ LAYER_HIERLABEL
Definition: layer_ids.h:361
@ LAYER_PINNAM
Definition: layer_ids.h:363
@ LAYER_PRIVATE_NOTES
Definition: layer_ids.h:371
@ LAYER_HOVERED
Definition: layer_ids.h:391
@ LAYER_GLOBLABEL
Definition: layer_ids.h:360
@ LAYER_WIRE
Definition: layer_ids.h:356
@ LAYER_NOTES
Definition: layer_ids.h:370
@ LAYER_ERC_ERR
Definition: layer_ids.h:383
@ LAYER_PIN
Definition: layer_ids.h:373
@ LAYER_VALUEPART
Definition: layer_ids.h:365
@ LAYER_BUS
Definition: layer_ids.h:357
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:390
@ LAYER_FIELDS
Definition: layer_ids.h:366
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:385
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:395
@ LAYER_LOCLABEL
Definition: layer_ids.h:359
@ LAYER_JUNCTION
Definition: layer_ids.h:358
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:377
@ LAYER_SCHEMATIC_GRID_AXES
Definition: layer_ids.h:388
@ LAYER_REFERENCEPART
Definition: layer_ids.h:364
@ LAYER_NETCLASS_REFS
Definition: layer_ids.h:368
@ LAYER_NOTES_BACKGROUND
Definition: layer_ids.h:372
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:401
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:396
@ LAYER_SHEET
Definition: layer_ids.h:374
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:394
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:389
@ LAYER_SCHEMATIC_AUX_ITEMS
Definition: layer_ids.h:398
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:400
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:376
@ LAYER_BUS_JUNCTION
Definition: layer_ids.h:397
@ LAYER_DNP_MARKER
Definition: layer_ids.h:381
@ LAYER_NOCONNECT
Definition: layer_ids.h:379
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:387
@ In22_Cu
Definition: layer_ids.h:86
@ In11_Cu
Definition: layer_ids.h:75
@ In29_Cu
Definition: layer_ids.h:93
@ In30_Cu
Definition: layer_ids.h:94
@ User_8
Definition: layer_ids.h:130
@ F_CrtYd
Definition: layer_ids.h:117
@ In17_Cu
Definition: layer_ids.h:81
@ B_Adhes
Definition: layer_ids.h:97
@ Edge_Cuts
Definition: layer_ids.h:113
@ Dwgs_User
Definition: layer_ids.h:109
@ F_Paste
Definition: layer_ids.h:101
@ In9_Cu
Definition: layer_ids.h:73
@ Cmts_User
Definition: layer_ids.h:110
@ User_6
Definition: layer_ids.h:128
@ User_7
Definition: layer_ids.h:129
@ In19_Cu
Definition: layer_ids.h:83
@ In7_Cu
Definition: layer_ids.h:71
@ In28_Cu
Definition: layer_ids.h:92
@ In26_Cu
Definition: layer_ids.h:90
@ F_Adhes
Definition: layer_ids.h:98
@ B_Mask
Definition: layer_ids.h:106
@ B_Cu
Definition: layer_ids.h:95
@ User_5
Definition: layer_ids.h:127
@ Eco1_User
Definition: layer_ids.h:111
@ F_Mask
Definition: layer_ids.h:107
@ In21_Cu
Definition: layer_ids.h:85
@ In23_Cu
Definition: layer_ids.h:87
@ B_Paste
Definition: layer_ids.h:100
@ In15_Cu
Definition: layer_ids.h:79
@ In2_Cu
Definition: layer_ids.h:66
@ User_9
Definition: layer_ids.h:131
@ F_Fab
Definition: layer_ids.h:120
@ In10_Cu
Definition: layer_ids.h:74
@ Margin
Definition: layer_ids.h:114
@ F_SilkS
Definition: layer_ids.h:104
@ In4_Cu
Definition: layer_ids.h:68
@ B_CrtYd
Definition: layer_ids.h:116
@ Eco2_User
Definition: layer_ids.h:112
@ In16_Cu
Definition: layer_ids.h:80
@ In24_Cu
Definition: layer_ids.h:88
@ In1_Cu
Definition: layer_ids.h:65
@ User_3
Definition: layer_ids.h:125
@ User_1
Definition: layer_ids.h:123
@ B_SilkS
Definition: layer_ids.h:103
@ In13_Cu
Definition: layer_ids.h:77
@ User_4
Definition: layer_ids.h:126
@ In8_Cu
Definition: layer_ids.h:72
@ In14_Cu
Definition: layer_ids.h:78
@ User_2
Definition: layer_ids.h:124
@ In12_Cu
Definition: layer_ids.h:76
@ In27_Cu
Definition: layer_ids.h:91
@ In6_Cu
Definition: layer_ids.h:70
@ In5_Cu
Definition: layer_ids.h:69
@ In3_Cu
Definition: layer_ids.h:67
@ In20_Cu
Definition: layer_ids.h:84
@ F_Cu
Definition: layer_ids.h:64
@ In18_Cu
Definition: layer_ids.h:82
@ In25_Cu
Definition: layer_ids.h:89
@ B_Fab
Definition: layer_ids.h:119