@atom-learning/theme 1.3.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 Tue, 02 May 2023 09:29:20 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;
@@ -99,13 +102,6 @@ $effects-shadows: (
99
102
  2: (0 10px 20px rgba(51, 51, 51, 0.1), 0 6px 6px rgba(51, 51, 51, 0.1)),
100
103
  3: (0 14px 28px rgba(51, 51, 51, 0.15), 0 10px 10px rgba(51, 51, 51, 0.1))
101
104
  );
102
- $ratios-ratio: (
103
- 16-9: 16/9,
104
- 3-2: 3/2,
105
- 4-3: 4/3,
106
- 1-1: 1/1,
107
- 3-4: 3/4
108
- );
109
105
  $size-font: (
110
106
  xs: 12px,
111
107
  sm: 14px,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atom-learning/theme",
3
- "version": "1.3.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",