@@ -18,18 +18,6 @@ public extension ColorType
1818{
1919 // MARK: - Foreground Color
2020
21- /**
22- Applies a foreground color attribute to the enclosed attributed strings.
23-
24- The foreground color will not override a foreground color set deeper in the hierarchy.
25-
26- - parameter strings: The attributed strings to apply the foreground color to.
27- */
28- public func foregroundAttribute( strings: AttributedStringConvertible ... ) -> AttributedStringConvertible
29- {
30- return Attributed . attribute ( NSForegroundColorAttributeName, self , strings)
31- }
32-
3321 /**
3422 Applies a foreground color attribute to the enclosed attributed strings.
3523
@@ -44,18 +32,6 @@ public extension ColorType
4432
4533 // MARK: - Background Color
4634
47- /**
48- Applies a background color attribute to the enclosed attributed strings.
49-
50- The background color will not override a background color set deeper in the hierarchy.
51-
52- - parameter strings: The attributed strings to apply the background color to.
53- */
54- public func backgroundAttribute( strings: AttributedStringConvertible ... ) -> AttributedStringConvertible
55- {
56- return Attributed . attribute ( NSBackgroundColorAttributeName, self , strings)
57- }
58-
5935 /**
6036 Applies a background color attribute to the enclosed attributed strings.
6137
@@ -70,18 +46,6 @@ public extension ColorType
7046
7147 // MARK: - Underline Color
7248
73- /**
74- Applies an underline color attribute to the enclosed attributed strings.
75-
76- The underline color will not override an underline color set deeper in the hierarchy.
77-
78- - parameter strings: The attributed strings to apply the underline color to.
79- */
80- public func underlineAttribute( strings: AttributedStringConvertible ... ) -> AttributedStringConvertible
81- {
82- return Attributed . attribute ( NSUnderlineColorAttributeName, self , strings)
83- }
84-
8549 /**
8650 Applies an underline color attribute to the enclosed attributed strings.
8751
@@ -96,18 +60,6 @@ public extension ColorType
9660
9761 // MARK: - Strikethrough Color
9862
99- /**
100- Applies an strikethrough color attribute to the enclosed attributed strings.
101-
102- The strikethrough color will not override an strikethrough color set deeper in the hierarchy.
103-
104- - parameter strings: The attributed strings to apply the strikethrough color to.
105- */
106- public func strikethroughAttribute( strings: AttributedStringConvertible ... ) -> AttributedStringConvertible
107- {
108- return Attributed . attribute ( NSStrikethroughColorAttributeName, self , strings)
109- }
110-
11163 /**
11264 Applies an strikethrough color attribute to the enclosed attributed strings.
11365
0 commit comments