Skip to content

Commit fb7a3aa

Browse files
committed
Mark Sub-Levels of RadixAutoColor as public
1 parent b548d49 commit fb7a3aa

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Sources/RadixUI/RadixColors/RadixAutoColor.swift

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public enum RadixAutoColor {
4646
case custom(String)
4747

4848
/// 1st level of RadixColor
49-
var background1: Color {
49+
public var background1: Color {
5050
switch self {
5151
case .custom(let name):
5252
return Color(
@@ -60,7 +60,7 @@ public enum RadixAutoColor {
6060
}
6161

6262
/// 2nd level of RadixColor
63-
var background2: Color {
63+
public var background2: Color {
6464
switch self {
6565
case .custom(let name):
6666
return Color(
@@ -74,7 +74,7 @@ public enum RadixAutoColor {
7474
}
7575

7676
/// 3rd level of RadixColor
77-
var component1: Color {
77+
public var component1: Color {
7878
switch self {
7979
case .custom(let name):
8080
return Color(
@@ -88,7 +88,7 @@ public enum RadixAutoColor {
8888
}
8989

9090
/// 4th level of RadixColor
91-
var component2: Color {
91+
public var component2: Color {
9292
switch self {
9393
case .custom(let name):
9494
return Color(
@@ -102,7 +102,7 @@ public enum RadixAutoColor {
102102
}
103103

104104
/// 5th level of RadixColor
105-
var component3: Color {
105+
public var component3: Color {
106106
switch self {
107107
case .custom(let name):
108108
return Color(
@@ -116,7 +116,7 @@ public enum RadixAutoColor {
116116
}
117117

118118
/// 6th level of RadixColor
119-
var border1: Color {
119+
public var border1: Color {
120120
switch self {
121121
case .custom(let name):
122122
return Color(
@@ -130,7 +130,7 @@ public enum RadixAutoColor {
130130
}
131131

132132
/// 7th level of RadixColor
133-
var border2: Color {
133+
public var border2: Color {
134134
switch self {
135135
case .custom(let name):
136136
return Color(
@@ -144,7 +144,7 @@ public enum RadixAutoColor {
144144
}
145145

146146
/// 8th level of RadixColor
147-
var border3: Color {
147+
public var border3: Color {
148148
switch self {
149149
case .custom(let name):
150150
return Color(
@@ -158,7 +158,7 @@ public enum RadixAutoColor {
158158
}
159159

160160
/// 9th level of RadixColor
161-
var solid1: Color {
161+
public var solid1: Color {
162162
switch self {
163163
case .custom(let name):
164164
return Color(
@@ -172,7 +172,7 @@ public enum RadixAutoColor {
172172
}
173173

174174
/// 10th level of RadixColor
175-
var solid2: Color {
175+
public var solid2: Color {
176176
switch self {
177177
case .custom(let name):
178178
return Color(
@@ -186,7 +186,7 @@ public enum RadixAutoColor {
186186
}
187187

188188
/// 11th level of RadixColor
189-
var text1: Color {
189+
public var text1: Color {
190190
switch self {
191191
case .custom(let name):
192192
return Color(
@@ -200,7 +200,7 @@ public enum RadixAutoColor {
200200
}
201201

202202
/// 12th level of RadixColor
203-
var text2: Color {
203+
public var text2: Color {
204204
switch self {
205205
case .custom(let name):
206206
return Color(

0 commit comments

Comments
 (0)