UNPKG
core-graphics
Version:
latest (6.8.0)
6.8.0
6.7.3
6.7.2
6.7.1
6.7.0
6.6.1
6.6.0
6.5.7
6.5.6
6.5.5
6.5.4
6.5.3
6.5.2
6.5.1
6.5.0
6.4.0
6.3.4
6.3.3
6.3.2
6.3.1
6.3.0
6.2.8
6.2.7
6.2.6
6.2.4
6.2.3
6.2.2
6.2.1
6.2.0
6.1.1
6.1.0
6.0.3
6.0.2
6.0.1
6.0.0
5.0.1
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.6.1
3.6.0
3.5.2
3.5.1
3.5.0
3.4.0
3.3.3
3.3.2
3.3.1
3.2.0
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
A core library for creating shape-based graphic editors
core-graphics
/
lib
/
renderer
/
constants.js
9 lines
(8 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
MAIN_COLOR
=
exports
.
MAIN_COLOR
=
'rgba(0, 160, 200, 0.5)'
;
var
getAlphaMainColor =
exports
.
getAlphaMainColor
=
function
getAlphaMainColor
(
a
) {
return
'rgba(0, 160, 200, '
+ a +
')'
; };