@@ -9,12 +9,12 @@ var reI = "\\s*([+-]?\\d+)\\s*",
9
9
reN = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*" ,
10
10
reP = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*" ,
11
11
reHex = / ^ # ( [ 0 - 9 a - f ] { 3 , 8 } ) $ / ,
12
- reRgbInteger = new RegExp ( " ^rgb\\(" + [ reI , reI , reI ] + " \\)$" ) ,
13
- reRgbPercent = new RegExp ( " ^rgb\\(" + [ reP , reP , reP ] + " \\)$" ) ,
14
- reRgbaInteger = new RegExp ( " ^rgba\\(" + [ reI , reI , reI , reN ] + " \\)$" ) ,
15
- reRgbaPercent = new RegExp ( " ^rgba\\(" + [ reP , reP , reP , reN ] + " \\)$" ) ,
16
- reHslPercent = new RegExp ( " ^hsl\\(" + [ reN , reP , reP ] + " \\)$" ) ,
17
- reHslaPercent = new RegExp ( " ^hsla\\(" + [ reN , reP , reP , reN ] + " \\)$" ) ;
12
+ reRgbInteger = new RegExp ( ` ^rgb\\(${ reI } , ${ reI } , ${ reI } \\)$` ) ,
13
+ reRgbPercent = new RegExp ( ` ^rgb\\(${ reP } , ${ reP } , ${ reP } \\)$` ) ,
14
+ reRgbaInteger = new RegExp ( ` ^rgba\\(${ reI } , ${ reI } , ${ reI } , ${ reN } \\)$` ) ,
15
+ reRgbaPercent = new RegExp ( ` ^rgba\\(${ reP } , ${ reP } , ${ reP } , ${ reN } \\)$` ) ,
16
+ reHslPercent = new RegExp ( ` ^hsl\\(${ reN } , ${ reP } , ${ reP } \\)$` ) ,
17
+ reHslaPercent = new RegExp ( ` ^hsla\\(${ reN } , ${ reP } , ${ reP } , ${ reN } \\)$` ) ;
18
18
19
19
var named = {
20
20
aliceblue : 0xf0f8ff ,
@@ -176,6 +176,7 @@ define(Color, color, {
176
176
} ,
177
177
hex : color_formatHex , // Deprecated! Use color.formatHex.
178
178
formatHex : color_formatHex ,
179
+ formatHex8 : color_formatHex8 ,
179
180
formatHsl : color_formatHsl ,
180
181
formatRgb : color_formatRgb ,
181
182
toString : color_formatRgb
@@ -185,6 +186,10 @@ function color_formatHex() {
185
186
return this . rgb ( ) . formatHex ( ) ;
186
187
}
187
188
189
+ function color_formatHex8 ( ) {
190
+ return this . rgb ( ) . formatHex8 ( ) ;
191
+ }
192
+
188
193
function color_formatHsl ( ) {
189
194
return hslConvert ( this ) . formatHsl ( ) ;
190
195
}
@@ -262,12 +267,17 @@ define(Rgb, rgb, extend(Color, {
262
267
} ,
263
268
hex : rgb_formatHex , // Deprecated! Use color.formatHex.
264
269
formatHex : rgb_formatHex ,
270
+ formatHex8 : rgb_formatHex8 ,
265
271
formatRgb : rgb_formatRgb ,
266
272
toString : rgb_formatRgb
267
273
} ) ) ;
268
274
269
275
function rgb_formatHex ( ) {
270
- return "#" + hex ( this . r ) + hex ( this . g ) + hex ( this . b ) ;
276
+ return `#${ hex ( this . r ) } ${ hex ( this . g ) } ${ hex ( this . b ) } ` ;
277
+ }
278
+
279
+ function rgb_formatHex8 ( ) {
280
+ return `#${ hex ( this . r ) } ${ hex ( this . g ) } ${ hex ( this . b ) } ${ hex ( ( isNaN ( this . opacity ) ? 1 : this . opacity ) * 255 ) } ` ;
271
281
}
272
282
273
283
function rgb_formatRgb ( ) {
0 commit comments