@atom-learning/theme 3.0.0-beta.0 → 3.0.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.
@@ -1,8 +1,9 @@
1
1
  export type Theme = {
2
2
  "colors": {
3
- "textForeground": string
3
+ "textBold": string
4
+ "textRegular": string
4
5
  "textSubtle": string
5
- "textPlaceholder": string
6
+ "textMinimal": string
6
7
  "background": string
7
8
  "backgroundAccent": string
8
9
  "grey100": string
package/lib/theme-atom.js CHANGED
@@ -1,8 +1,9 @@
1
1
  module.exports = {
2
2
  "colors": {
3
- "textForeground": "hsl(0, 0%, 12%)",
3
+ "textBold": "hsl(0, 0%, 12%)",
4
+ "textRegular": "hsl(0, 0%, 20%)",
4
5
  "textSubtle": "hsl(0, 0%, 33%)",
5
- "textPlaceholder": "hsl(0, 0%, 46%)",
6
+ "textMinimal": "hsl(0, 0%, 46%)",
6
7
  "background": "hsl(0, 0%, 96%)",
7
8
  "backgroundAccent": "hsl(215, 100%, 98%)",
8
9
  "grey100": "hsl(0, 0%, 96%)",
@@ -1,10 +1,11 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 08 Jan 2024 11:47:57 GMT
3
+ // Generated on Wed, 10 Jan 2024 15:58:08 GMT
4
4
 
5
- $color-text-foreground: #1f1f1f;
5
+ $color-text-bold: #1f1f1f;
6
+ $color-text-regular: #333333;
6
7
  $color-text-subtle: #545454;
7
- $color-text-placeholder: #757575;
8
+ $color-text-minimal: #757575;
8
9
  $color-background-base: #f5f5f5;
9
10
  $color-background-accent: #f5f9ff;
10
11
  $color-grey-100: #f5f5f5;
@@ -1,8 +1,9 @@
1
1
  export type Theme = {
2
2
  "colors": {
3
- "textForeground": string
3
+ "textBold": string
4
+ "textRegular": string
4
5
  "textSubtle": string
5
- "textPlaceholder": string
6
+ "textMinimal": string
6
7
  "background": string
7
8
  "backgroundAccent": string
8
9
  "grey100": string
@@ -1,8 +1,9 @@
1
1
  module.exports = {
2
2
  "colors": {
3
- "textForeground": "hsl(0, 0%, 12%)",
3
+ "textBold": "hsl(0, 0%, 12%)",
4
+ "textRegular": "hsl(0, 0%, 20%)",
4
5
  "textSubtle": "hsl(0, 0%, 33%)",
5
- "textPlaceholder": "hsl(0, 0%, 46%)",
6
+ "textMinimal": "hsl(0, 0%, 46%)",
6
7
  "background": "hsl(0, 0%, 96%)",
7
8
  "backgroundAccent": "hsl(215, 100%, 98%)",
8
9
  "grey100": "hsl(0, 0%, 96%)",
@@ -223,7 +224,7 @@ module.exports = {
223
224
  "fonts": {
224
225
  "sans": "system-ui, -apple-system, 'Helvetica Neue', sans-serif",
225
226
  "mono": "'SFMono-Regular', Consolas, Menlo, monospace",
226
- "display": "'Make', system-ui, -apple-system, 'Helvetica Neue', sans-serif",
227
+ "display": "'DM Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif",
227
228
  "body": "'DM Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif"
228
229
  },
229
230
  "sizes": {
@@ -1,10 +1,11 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 08 Jan 2024 11:47:58 GMT
3
+ // Generated on Wed, 10 Jan 2024 15:58:08 GMT
4
4
 
5
- $color-text-foreground: #1f1f1f;
5
+ $color-text-bold: #1f1f1f;
6
+ $color-text-regular: #333333;
6
7
  $color-text-subtle: #545454;
7
- $color-text-placeholder: #757575;
8
+ $color-text-minimal: #757575;
8
9
  $color-background-base: #f5f5f5;
9
10
  $color-background-accent: #f5f9ff;
10
11
  $color-grey-100: #f5f5f5;
@@ -200,7 +201,7 @@ $color-primary-1100: #162c22;
200
201
  $color-primary-1200: #0e1612;
201
202
  $font-families-sans: system-ui, -apple-system, 'Helvetica Neue', sans-serif;
202
203
  $font-families-mono: 'SFMono-Regular', Consolas, Menlo, monospace;
203
- $font-families-display: 'Make', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
204
+ $font-families-display: 'DM Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
204
205
  $font-families-body: 'DM Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
205
206
 
206
207
  $effects-shadows: (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atom-learning/theme",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0",
4
4
  "description": "Design tokens and assets for Atom Learning",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",