@codecademy/codebytes 0.6.7-alpha.0ffe42.0 → 0.6.7-alpha.ce4cba.0
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/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
### [0.6.7-alpha.
|
|
6
|
+
### [0.6.7-alpha.ce4cba.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.6.6...@codecademy/codebytes@0.6.7-alpha.ce4cba.0) (2022-02-04)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @codecademy/codebytes
|
|
9
9
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// This file is part of the Codebytes MVP and only includes basic configuration around theming for the SimpleMonacoEditor component
|
|
3
3
|
// We are working on a monaco package in client-modules that has more configuration around themes and languages
|
|
4
4
|
// Monaco as a shared package RFC https://www.notion.so/codecademy/Monaco-editor-as-a-shared-package-1f4484db165b4abc8394c3556451ef6a
|
|
5
|
-
import { colors, editorColors
|
|
5
|
+
import { colors, editorColors } from '@codecademy/gamut-styles';
|
|
6
6
|
var darkTheme = {
|
|
7
7
|
blue: editorColors.blue,
|
|
8
8
|
deepPurple: editorColors.deepPurple,
|
|
@@ -12,8 +12,7 @@ var darkTheme = {
|
|
|
12
12
|
purple: editorColors.purple,
|
|
13
13
|
red: editorColors.red,
|
|
14
14
|
white: colors.white,
|
|
15
|
-
yellow: editorColors.yellow
|
|
16
|
-
lightGray: theme.colors['navy-400']
|
|
15
|
+
yellow: editorColors.yellow
|
|
17
16
|
};
|
|
18
17
|
export var syntax = {
|
|
19
18
|
attribute: darkTheme.green,
|
|
@@ -35,8 +34,7 @@ export var syntax = {
|
|
|
35
34
|
tag: darkTheme.red,
|
|
36
35
|
text: darkTheme.orange,
|
|
37
36
|
value: darkTheme.yellow,
|
|
38
|
-
variable: darkTheme.green
|
|
39
|
-
lineNumber: darkTheme.lightGray
|
|
37
|
+
variable: darkTheme.green
|
|
40
38
|
};
|
|
41
39
|
export var ui = {
|
|
42
40
|
background: '#211E2F',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/codebytes",
|
|
3
3
|
"description": "Codebytes Code Editor",
|
|
4
|
-
"version": "0.6.7-alpha.
|
|
4
|
+
"version": "0.6.7-alpha.ce4cba.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.css",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"files": [
|
|
65
65
|
"dist/**"
|
|
66
66
|
],
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "ee94818b739e801c99e15ea5c096a4f3474408f0"
|
|
68
68
|
}
|