oolib 2.96.0 → 2.96.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/themes/colors.d.ts +2 -0
- package/dist/themes/colors.js +3 -1
- package/package.json +1 -1
package/dist/themes/colors.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export namespace colors {
|
|
|
45
45
|
export { lightPink };
|
|
46
46
|
export { pinkHighlight };
|
|
47
47
|
export { blueHighlight };
|
|
48
|
+
export { yellowHighlight };
|
|
48
49
|
export { annoPink };
|
|
49
50
|
export { annoBlue };
|
|
50
51
|
}
|
|
@@ -94,6 +95,7 @@ declare const cyan: "#B5F2FA";
|
|
|
94
95
|
declare const lightPink: "#FFE5F2";
|
|
95
96
|
declare const pinkHighlight: "#FF9AF4";
|
|
96
97
|
declare const blueHighlight: "#52E2EE";
|
|
98
|
+
declare const yellowHighlight: "#FFE600";
|
|
97
99
|
declare const annoPink: "#FF91F4";
|
|
98
100
|
declare const annoBlue: "#52E2EE";
|
|
99
101
|
export {};
|
package/dist/themes/colors.js
CHANGED
|
@@ -48,6 +48,7 @@ var disabledShadowColor = greyColor70;
|
|
|
48
48
|
// Highlight colors used in RTE
|
|
49
49
|
var pinkHighlight = '#FF9AF4';
|
|
50
50
|
var blueHighlight = '#52E2EE';
|
|
51
|
+
var yellowHighlight = "#FFE600";
|
|
51
52
|
// annotation RTE Colors
|
|
52
53
|
var annoPink = '#FF91F4';
|
|
53
54
|
var annoBlue = '#52E2EE';
|
|
@@ -98,6 +99,7 @@ exports.colors = {
|
|
|
98
99
|
lightPink: lightPink,
|
|
99
100
|
pinkHighlight: pinkHighlight,
|
|
100
101
|
blueHighlight: blueHighlight,
|
|
102
|
+
yellowHighlight: yellowHighlight,
|
|
101
103
|
annoPink: annoPink,
|
|
102
|
-
annoBlue: annoBlue
|
|
104
|
+
annoBlue: annoBlue,
|
|
103
105
|
};
|