-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy patheagle.css
More file actions
95 lines (84 loc) · 1.05 KB
/
eagle.css
File metadata and controls
95 lines (84 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
line,
circle,
rect
{
stroke: none;
fill: none;
opacity: 0.8;
}
.wire,
.wire[layer="tDocu"],
.wire[layer="tPlace"]
{
stroke: #a5a5a5;
}
.circle[layer="tDocu"],
.circle[layer="tPlace"],
.rectangle[layer="tDocu"],
.rectangle[layer="tPlace"],
.polygon[layer="tDocu"],
.polygon[layer="tPlace"]
{
fill: #a5a5a5;
}
text[layer="tNames"],
text[layer="tValues"]
{
stroke: none;
fill: #555555;
}
/* in the SVG pins are groups of lines and circles */
.pin
{
stroke-width: 0.2;
}
.pin line
{
stroke: #a54b4b;
fill: none;
}
.pin circle
{
stroke: #4ba54b;
}
.pin .function
{
stroke: #a54b4b;
}
/* holes are circles */
.hole
{
fill: black;
}
/* lightgreen */
.pad rect,
.pad circle
{
stroke: none;
fill: #4ba54b;
}
/* pad's drillhole */
.pad .drill
{
stroke: none;
fill: white;
}
/* smds are rects */
/* red */
.wire[layer="Top"],
.smd[layer="Top"]
{
fill: #a54b4b;
}
/* blue */
.wire[layer="Bottom"],
.smd[layer="Bottom"]
{
fill: #4b4ba5;
}
/* yellow */
.via
{
stroke: none;
fill: #ffff45;
}