@atom-learning/theme 1.4.0 → 1.5.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/lib/index.d.ts CHANGED
@@ -86,6 +86,9 @@ export type Theme = {
86
86
  "subjectNonVerbalReasoning": string
87
87
  "subjectCreativeWriting": string
88
88
  "subjectExamSkills": string
89
+ "glBlueLight": string
90
+ "glBluePrimary": string
91
+ "glBlueDark": string
89
92
  },
90
93
  "space": {
91
94
  "0": string
package/lib/index.js CHANGED
@@ -85,7 +85,10 @@ module.exports = {
85
85
  "subjectVerbalReasoning": "hsl(128, 47%, 53%)",
86
86
  "subjectNonVerbalReasoning": "hsl(41, 100%, 55%)",
87
87
  "subjectCreativeWriting": "hsl(33, 100%, 50%)",
88
- "subjectExamSkills": "hsl(256, 93%, 35%)"
88
+ "subjectExamSkills": "hsl(256, 93%, 35%)",
89
+ "glBlueLight": "hsl(222, 68%, 78%)",
90
+ "glBluePrimary": "hsl(222, 56%, 55%)",
91
+ "glBlueDark": "hsl(222, 35%, 43%)"
89
92
  },
90
93
  "space": {
91
94
  "0": "0.125rem",
package/lib/index.scss CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 11 May 2023 09:59:27 GMT
3
+ // Generated on Fri, 02 Jun 2023 07:50:09 GMT
4
4
 
5
5
  $color-text-foreground: #1f1f1f;
6
6
  $color-text-subtle: #545454;
@@ -88,6 +88,9 @@ $color-subject-verbal-reasoning: #4fbf5e;
88
88
  $color-subject-non-verbal-reasoning: #ffb61a;
89
89
  $color-subject-creative-writing: #ff8c00;
90
90
  $color-subject-exam-skills: #3306ac;
91
+ $color-gl-blue-light: #a1b8ed;
92
+ $color-gl-blue-primary: #4c73cd;
93
+ $color-gl-blue-dark: #475e94;
91
94
  $font-families-sans: system-ui, -apple-system, 'Helvetica Neue', sans-serif;
92
95
  $font-families-mono: 'SFMono-Regular', Consolas, Menlo, monospace;
93
96
  $font-families-display: 'Space Grotesk', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atom-learning/theme",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "Design tokens and assets for Atom Learning",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",