@codecademy/gamut-styles 17.14.1-alpha.c5935d.0 → 17.14.1-alpha.c95ffe.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/dist/remoteAssets/fonts.d.ts +2 -2
- package/dist/remoteAssets/fonts.js +79 -26
- package/dist/themes/lxStudio.d.ts +18 -19
- package/dist/themes/lxStudio.js +7 -6
- package/dist/themes/percipio.d.ts +8 -7
- package/dist/themes/percipio.js +2 -8
- package/dist/variables/colors.d.ts +2 -4
- package/dist/variables/colors.js +1 -2
- package/dist/variables/typography.d.ts +13 -3
- package/dist/variables/typography.js +14 -3
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { FontConfig } from '../utilities/fontUtils';
|
|
1
|
+
import type { FontConfig } from '../utilities/fontUtils';
|
|
2
2
|
export declare const FONT_ASSET_PATH = "https://www.codecademy.com/gamut";
|
|
3
3
|
export declare const core: readonly FontConfig[];
|
|
4
|
+
/** Percipio: Skillsoft (accent/base) plus Roboto system + Roboto Mono monospace. */
|
|
4
5
|
export declare const percipio: readonly FontConfig[];
|
|
5
|
-
export declare const lxStudio: readonly FontConfig[];
|
|
6
6
|
export declare const webFonts: {
|
|
7
7
|
readonly core: readonly FontConfig[];
|
|
8
8
|
readonly percipio: readonly FontConfig[];
|
|
@@ -32,7 +32,80 @@ export const core = [{
|
|
|
32
32
|
extensions,
|
|
33
33
|
name: 'Suisse'
|
|
34
34
|
}];
|
|
35
|
-
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Skillsoft Sans (accent) + Skillsoft Text (base).
|
|
38
|
+
* Weights 400 / 500 / 700 + italics; 500 uses Medium files for title/bold tokens.
|
|
39
|
+
*/
|
|
40
|
+
const skillsoftFamilyFonts = [{
|
|
41
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-Regular`,
|
|
42
|
+
extensions,
|
|
43
|
+
name: 'Skillsoft Text'
|
|
44
|
+
}, {
|
|
45
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-RegularItalic`,
|
|
46
|
+
extensions,
|
|
47
|
+
name: 'Skillsoft Text',
|
|
48
|
+
style: 'italic'
|
|
49
|
+
}, {
|
|
50
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-Medium`,
|
|
51
|
+
extensions,
|
|
52
|
+
name: 'Skillsoft Text',
|
|
53
|
+
weight: 500
|
|
54
|
+
}, {
|
|
55
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-MediumItalic`,
|
|
56
|
+
extensions,
|
|
57
|
+
name: 'Skillsoft Text',
|
|
58
|
+
weight: 500,
|
|
59
|
+
style: 'italic'
|
|
60
|
+
}, {
|
|
61
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-Bold`,
|
|
62
|
+
extensions,
|
|
63
|
+
name: 'Skillsoft Text',
|
|
64
|
+
weight: 700
|
|
65
|
+
}, {
|
|
66
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftText-BoldItalic`,
|
|
67
|
+
extensions,
|
|
68
|
+
name: 'Skillsoft Text',
|
|
69
|
+
weight: 700,
|
|
70
|
+
style: 'italic'
|
|
71
|
+
}, {
|
|
72
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-Regular`,
|
|
73
|
+
extensions,
|
|
74
|
+
name: 'Skillsoft Sans'
|
|
75
|
+
}, {
|
|
76
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-RegularItalic`,
|
|
77
|
+
extensions,
|
|
78
|
+
name: 'Skillsoft Sans',
|
|
79
|
+
style: 'italic'
|
|
80
|
+
}, {
|
|
81
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-Medium`,
|
|
82
|
+
extensions,
|
|
83
|
+
name: 'Skillsoft Sans',
|
|
84
|
+
weight: 500
|
|
85
|
+
}, {
|
|
86
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-MediumItalic`,
|
|
87
|
+
extensions,
|
|
88
|
+
name: 'Skillsoft Sans',
|
|
89
|
+
weight: 500,
|
|
90
|
+
style: 'italic'
|
|
91
|
+
}, {
|
|
92
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-Bold`,
|
|
93
|
+
extensions,
|
|
94
|
+
name: 'Skillsoft Sans',
|
|
95
|
+
weight: 700
|
|
96
|
+
}, {
|
|
97
|
+
filePath: `${FONT_ASSET_PATH}/SkillsoftSans-BoldItalic`,
|
|
98
|
+
extensions,
|
|
99
|
+
name: 'Skillsoft Sans',
|
|
100
|
+
weight: 700,
|
|
101
|
+
style: 'italic'
|
|
102
|
+
}];
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Roboto + Roboto Mono for Percipio `system` and `monospace` theme slots.
|
|
106
|
+
* The default weight for bold fonts is 700; Percipio uses 500 for the base bold.
|
|
107
|
+
*/
|
|
108
|
+
const percipioRobotoFonts = [{
|
|
36
109
|
filePath: `${FONT_ASSET_PATH}/roboto-regular`,
|
|
37
110
|
extensions,
|
|
38
111
|
name: 'Roboto'
|
|
@@ -41,9 +114,7 @@ export const percipio = [{
|
|
|
41
114
|
extensions,
|
|
42
115
|
name: 'Roboto',
|
|
43
116
|
style: 'italic'
|
|
44
|
-
},
|
|
45
|
-
// The default weight for bold fonts is 700, Percipio uses 500 for the base bold
|
|
46
|
-
{
|
|
117
|
+
}, {
|
|
47
118
|
filePath: `${FONT_ASSET_PATH}/roboto-bold`,
|
|
48
119
|
extensions,
|
|
49
120
|
name: 'Roboto',
|
|
@@ -75,29 +146,11 @@ export const percipio = [{
|
|
|
75
146
|
name: 'Roboto Mono',
|
|
76
147
|
weight: 'bold'
|
|
77
148
|
}];
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
name: 'Hanken Grotesk'
|
|
82
|
-
}, {
|
|
83
|
-
filePath: `${FONT_ASSET_PATH}/hanken-grotesk-italic`,
|
|
84
|
-
extensions,
|
|
85
|
-
name: 'Hanken Grotesk',
|
|
86
|
-
style: 'italic'
|
|
87
|
-
}, {
|
|
88
|
-
filePath: `${FONT_ASSET_PATH}/hanken-grotesk-bold`,
|
|
89
|
-
extensions,
|
|
90
|
-
name: 'Hanken Grotesk',
|
|
91
|
-
weight: 'bold'
|
|
92
|
-
}, {
|
|
93
|
-
filePath: `${FONT_ASSET_PATH}/hanken-grotesk-bold-italic`,
|
|
94
|
-
extensions,
|
|
95
|
-
name: 'Hanken Grotesk',
|
|
96
|
-
weight: 'bold',
|
|
97
|
-
style: 'italic'
|
|
98
|
-
}];
|
|
149
|
+
|
|
150
|
+
/** Percipio: Skillsoft (accent/base) plus Roboto system + Roboto Mono monospace. */
|
|
151
|
+
export const percipio = [...skillsoftFamilyFonts, ...percipioRobotoFonts];
|
|
99
152
|
export const webFonts = {
|
|
100
153
|
core,
|
|
101
154
|
percipio,
|
|
102
|
-
lxStudio
|
|
155
|
+
lxStudio: percipio
|
|
103
156
|
};
|
|
@@ -52,11 +52,19 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
52
52
|
full: string;
|
|
53
53
|
};
|
|
54
54
|
fontFamily: {
|
|
55
|
-
readonly accent: "\"
|
|
56
|
-
readonly base: "\"
|
|
55
|
+
readonly accent: "\"Skillsoft Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
56
|
+
readonly base: "\"Skillsoft Text\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
57
57
|
readonly monospace: "Monaco, Menlo, \"Ubuntu Mono\", \"Droid Sans Mono\", Consolas,\nmonospace";
|
|
58
58
|
readonly system: "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Ubuntu\",\n\"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif";
|
|
59
59
|
};
|
|
60
|
+
fontWeight: {
|
|
61
|
+
readonly title: 500;
|
|
62
|
+
readonly bold: 500;
|
|
63
|
+
readonly 500: 500;
|
|
64
|
+
readonly base: 400;
|
|
65
|
+
readonly 700: 700;
|
|
66
|
+
readonly 400: 400;
|
|
67
|
+
};
|
|
60
68
|
breakpoints: {
|
|
61
69
|
c_base: string;
|
|
62
70
|
c_xs: string;
|
|
@@ -99,12 +107,6 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
99
107
|
readonly spacedTitle: 1.3;
|
|
100
108
|
readonly title: 1.2;
|
|
101
109
|
};
|
|
102
|
-
fontWeight: {
|
|
103
|
-
readonly base: 400;
|
|
104
|
-
readonly title: 700;
|
|
105
|
-
readonly 700: 700;
|
|
106
|
-
readonly 400: 400;
|
|
107
|
-
};
|
|
108
110
|
spacing: {
|
|
109
111
|
readonly 0: 0;
|
|
110
112
|
readonly 4: string;
|
|
@@ -546,8 +548,7 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
546
548
|
} & import("@codecademy/variance/dist/createTheme/types").PrivateThemeKeys, Record<"colors", import("@codecademy/variance").KeyAsVariable<import("@codecademy/variance").LiteralPaths<{
|
|
547
549
|
lxStudioSuccess: "#06844F";
|
|
548
550
|
lxStudioBgPrimary: "#FAFBFC";
|
|
549
|
-
|
|
550
|
-
lxStudioPurpleHover: "#7955FC";
|
|
551
|
+
sapphire: "#1C50BB";
|
|
551
552
|
beige: "#FFF0E5";
|
|
552
553
|
blue: "#1557FF";
|
|
553
554
|
green: "#008A27";
|
|
@@ -628,8 +629,8 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
628
629
|
primary: "navy-200";
|
|
629
630
|
};
|
|
630
631
|
primary: {
|
|
631
|
-
_: "
|
|
632
|
-
hover: "
|
|
632
|
+
_: "sapphire";
|
|
633
|
+
hover: "navy-800";
|
|
633
634
|
};
|
|
634
635
|
interface: {
|
|
635
636
|
_: "hyper-500";
|
|
@@ -883,8 +884,7 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
883
884
|
}, "-">, "color">>, import("@codecademy/variance").KeyAsVariable<import("@codecademy/variance").LiteralPaths<{
|
|
884
885
|
lxStudioSuccess: "#06844F";
|
|
885
886
|
lxStudioBgPrimary: "#FAFBFC";
|
|
886
|
-
|
|
887
|
-
lxStudioPurpleHover: "#7955FC";
|
|
887
|
+
sapphire: "#1C50BB";
|
|
888
888
|
beige: "#FFF0E5";
|
|
889
889
|
blue: "#1557FF";
|
|
890
890
|
green: "#008A27";
|
|
@@ -1071,8 +1071,8 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
1071
1071
|
primary: "navy-200";
|
|
1072
1072
|
};
|
|
1073
1073
|
primary: {
|
|
1074
|
-
_: "
|
|
1075
|
-
hover: "
|
|
1074
|
+
_: "sapphire";
|
|
1075
|
+
hover: "navy-800";
|
|
1076
1076
|
};
|
|
1077
1077
|
interface: {
|
|
1078
1078
|
_: "hyper-500";
|
|
@@ -1086,8 +1086,7 @@ export declare const lxStudioTheme: Record<"breakpoints", {
|
|
|
1086
1086
|
}, "-", "_">;
|
|
1087
1087
|
}>;
|
|
1088
1088
|
mode: "light";
|
|
1089
|
-
_getColorValue: (color: "beige" | "blue" | "navy" | "green" | "yellow" | "pink" | "red" | "orange" | "hyper" | "white" | "beige-100" | "blue-0" | "blue-100" | "blue-300" | "blue-400" | "blue-500" | "blue-800" | "navy-100" | "navy-300" | "navy-400" | "navy-500" | "navy-800" | "navy-200" | "navy-600" | "navy-700" | "navy-900" | "green-0" | "green-100" | "green-400" | "green-700" | "green-900" | "yellow-0" | "yellow-400" | "yellow-500" | "yellow-900" | "pink-0" | "pink-400" | "red-0" | "red-300" | "red-400" | "red-500" | "red-600" | "red-900" | "orange-100" | "orange-500" | "hyper-400" | "hyper-500" | "gray-100" | "gray-300" | "gray-800" | "gray-200" | "gray-600" | "gray-900" | "white-100" | "white-300" | "white-400" | "white-500" | "white-200" | "white-600" | "white-700" | "black" | "lightBlue" | "lightGreen" | "paleBlue" | "paleGreen" | "palePink" | "paleYellow" | "paleRed" | "text" | "secondary" | "background" | "primary" | "danger" | "interface" | "border-primary" | "text-accent" | "text-disabled" | "text-secondary" | "secondary-hover" | "feedback-error" | "feedback-success" | "feedback-warning" | "background-disabled" | "background-error" | "background-success" | "background-warning" | "background-contrast" | "background-current" | "background-primary" | "background-selected" | "background-hover" | "primary-hover" | "primary-inverse" | "shadow-secondary" | "shadow-primary" | "danger-hover" | "interface-hover" | "border-disabled" | "border-secondary" | "border-tertiary" | "lxStudioSuccess" | "lxStudioBgPrimary" | "
|
|
1089
|
+
_getColorValue: (color: "beige" | "blue" | "navy" | "green" | "yellow" | "pink" | "red" | "orange" | "hyper" | "white" | "beige-100" | "blue-0" | "blue-100" | "blue-300" | "blue-400" | "blue-500" | "blue-800" | "navy-100" | "navy-300" | "navy-400" | "navy-500" | "navy-800" | "navy-200" | "navy-600" | "navy-700" | "navy-900" | "green-0" | "green-100" | "green-400" | "green-700" | "green-900" | "yellow-0" | "yellow-400" | "yellow-500" | "yellow-900" | "pink-0" | "pink-400" | "red-0" | "red-300" | "red-400" | "red-500" | "red-600" | "red-900" | "orange-100" | "orange-500" | "hyper-400" | "hyper-500" | "gray-100" | "gray-300" | "gray-800" | "gray-200" | "gray-600" | "gray-900" | "white-100" | "white-300" | "white-400" | "white-500" | "white-200" | "white-600" | "white-700" | "black" | "lightBlue" | "lightGreen" | "paleBlue" | "paleGreen" | "palePink" | "paleYellow" | "paleRed" | "text" | "secondary" | "background" | "primary" | "danger" | "interface" | "border-primary" | "text-accent" | "text-disabled" | "text-secondary" | "secondary-hover" | "feedback-error" | "feedback-success" | "feedback-warning" | "background-disabled" | "background-error" | "background-success" | "background-warning" | "background-contrast" | "background-current" | "background-primary" | "background-selected" | "background-hover" | "primary-hover" | "primary-inverse" | "shadow-secondary" | "shadow-primary" | "danger-hover" | "interface-hover" | "border-disabled" | "border-secondary" | "border-tertiary" | "lxStudioSuccess" | "lxStudioBgPrimary" | "sapphire") => string;
|
|
1090
1090
|
}> & import("@codecademy/variance/dist/createTheme/types").PrivateThemeKeys, Record<"name", string>> & import("@codecademy/variance/dist/createTheme/types").PrivateThemeKeys;
|
|
1091
1091
|
export type LxStudioThemeShape = typeof lxStudioTheme;
|
|
1092
|
-
export
|
|
1093
|
-
}
|
|
1092
|
+
export type LxStudioTheme = LxStudioThemeShape;
|
package/dist/themes/lxStudio.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createTheme } from '@codecademy/variance';
|
|
2
|
-
import {
|
|
2
|
+
import { fontMonospace, fontSystem, fontWeightMediumTitle, lxStudioPalette, percipioFontFamily } from '../variables';
|
|
3
3
|
import { coreTheme } from './core';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -8,8 +8,8 @@ import { coreTheme } from './core';
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
const lxStudioFontFamily = {
|
|
11
|
-
accent:
|
|
12
|
-
base:
|
|
11
|
+
accent: percipioFontFamily.accent,
|
|
12
|
+
base: percipioFontFamily.base,
|
|
13
13
|
monospace: fontMonospace,
|
|
14
14
|
system: fontSystem
|
|
15
15
|
};
|
|
@@ -24,7 +24,8 @@ export const lxStudioBorderRadii = {
|
|
|
24
24
|
export const lxStudioTheme = createTheme({
|
|
25
25
|
...coreTheme,
|
|
26
26
|
borderRadii: lxStudioBorderRadii,
|
|
27
|
-
fontFamily: lxStudioFontFamily
|
|
27
|
+
fontFamily: lxStudioFontFamily,
|
|
28
|
+
fontWeight: fontWeightMediumTitle
|
|
28
29
|
}).addColors(lxStudioPalette).addColorModes('light', {
|
|
29
30
|
// these are just the overrides, the rest of the tokens are inherited from coreTheme
|
|
30
31
|
light: {
|
|
@@ -38,8 +39,8 @@ export const lxStudioTheme = createTheme({
|
|
|
38
39
|
primary: 'navy-200'
|
|
39
40
|
},
|
|
40
41
|
primary: {
|
|
41
|
-
_: '
|
|
42
|
-
hover: '
|
|
42
|
+
_: 'sapphire',
|
|
43
|
+
hover: 'navy-800'
|
|
43
44
|
},
|
|
44
45
|
interface: {
|
|
45
46
|
_: 'hyper-500',
|
|
@@ -36,17 +36,18 @@ export declare const percipioTheme: Record<"breakpoints", {
|
|
|
36
36
|
xl: string;
|
|
37
37
|
}> & import("@codecademy/variance/dist/createTheme/types").Merge<{
|
|
38
38
|
fontFamily: {
|
|
39
|
-
readonly accent: "\"Roboto\",
|
|
40
|
-
readonly base: "\"Roboto\",
|
|
39
|
+
readonly accent: "\"Skillsoft Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
40
|
+
readonly base: "\"Skillsoft Text\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
41
41
|
readonly monospace: "\"Roboto Mono\", monospace";
|
|
42
42
|
readonly system: "\"Roboto\", sans-serif";
|
|
43
43
|
};
|
|
44
44
|
fontWeight: {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
45
|
+
readonly title: 500;
|
|
46
|
+
readonly bold: 500;
|
|
47
|
+
readonly 500: 500;
|
|
48
|
+
readonly base: 400;
|
|
49
|
+
readonly 700: 700;
|
|
50
|
+
readonly 400: 400;
|
|
50
51
|
};
|
|
51
52
|
breakpoints: {
|
|
52
53
|
c_base: string;
|
package/dist/themes/percipio.js
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
import { createTheme } from '@codecademy/variance';
|
|
2
|
-
import { percipioFontFamily, percipioPalette } from '../variables';
|
|
2
|
+
import { fontWeightMediumTitle, percipioFontFamily, percipioPalette } from '../variables';
|
|
3
3
|
import { coreTheme } from './core';
|
|
4
4
|
export const percipioTheme = createTheme({
|
|
5
5
|
...coreTheme,
|
|
6
6
|
fontFamily: percipioFontFamily,
|
|
7
|
-
fontWeight:
|
|
8
|
-
base: 400,
|
|
9
|
-
title: 500,
|
|
10
|
-
bold: 500,
|
|
11
|
-
700: 700,
|
|
12
|
-
400: 400
|
|
13
|
-
}
|
|
7
|
+
fontWeight: fontWeightMediumTitle
|
|
14
8
|
}).addColors(percipioPalette).addColorModes('light', {
|
|
15
9
|
// these are just the overrides, the rest of the tokens are inherited from coreTheme
|
|
16
10
|
light: {
|
|
@@ -231,14 +231,12 @@ export declare const platformPalette: {
|
|
|
231
231
|
export declare const lxStudioColors: {
|
|
232
232
|
readonly lxStudioSuccess: "#06844F";
|
|
233
233
|
readonly lxStudioBgPrimary: "#FAFBFC";
|
|
234
|
-
readonly
|
|
235
|
-
readonly lxStudioPurpleHover: "#7955FC";
|
|
234
|
+
readonly sapphire: "#1C50BB";
|
|
236
235
|
};
|
|
237
236
|
export declare const lxStudioPalette: {
|
|
238
237
|
lxStudioSuccess: "#06844F";
|
|
239
238
|
lxStudioBgPrimary: "#FAFBFC";
|
|
240
|
-
|
|
241
|
-
lxStudioPurpleHover: "#7955FC";
|
|
239
|
+
sapphire: "#1C50BB";
|
|
242
240
|
beige: "#FFF0E5";
|
|
243
241
|
blue: "#1557FF";
|
|
244
242
|
green: "#008A27";
|
package/dist/variables/colors.js
CHANGED
|
@@ -161,8 +161,7 @@ export const platformPalette = {
|
|
|
161
161
|
export const lxStudioColors = {
|
|
162
162
|
lxStudioSuccess: '#06844F',
|
|
163
163
|
lxStudioBgPrimary: '#FAFBFC',
|
|
164
|
-
|
|
165
|
-
lxStudioPurpleHover: '#7955FC'
|
|
164
|
+
sapphire: '#1C50BB'
|
|
166
165
|
};
|
|
167
166
|
export const lxStudioPalette = {
|
|
168
167
|
...corePalette,
|
|
@@ -2,7 +2,8 @@ export declare const fontAccent = "\"Suisse\", \"Apercu\", -apple-system, BlinkM
|
|
|
2
2
|
export declare const fontBase = "\"Apercu\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
3
3
|
export declare const fontMonospace = "Monaco, Menlo, \"Ubuntu Mono\", \"Droid Sans Mono\", Consolas,\nmonospace";
|
|
4
4
|
export declare const fontSystem = "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Ubuntu\",\n\"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif";
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const fontPercipioAccent = "\"Skillsoft Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
6
|
+
export declare const fontPercipioBase = "\"Skillsoft Text\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
6
7
|
export declare const fontFamily: {
|
|
7
8
|
readonly accent: "\"Suisse\", \"Apercu\", -apple-system, BlinkMacSystemFont,\n\"Segoe UI\", \"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\",\n\"Helvetica Neue\", sans-serif";
|
|
8
9
|
readonly base: "\"Apercu\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
@@ -31,9 +32,18 @@ export declare const fontWeight: {
|
|
|
31
32
|
readonly 700: 700;
|
|
32
33
|
readonly 400: 400;
|
|
33
34
|
};
|
|
35
|
+
/** Title/bold semantic tokens use 500 (Medium), matching Skillsoft + Percipio Roboto webfonts. */
|
|
36
|
+
export declare const fontWeightMediumTitle: {
|
|
37
|
+
readonly title: 500;
|
|
38
|
+
readonly bold: 500;
|
|
39
|
+
readonly 500: 500;
|
|
40
|
+
readonly base: 400;
|
|
41
|
+
readonly 700: 700;
|
|
42
|
+
readonly 400: 400;
|
|
43
|
+
};
|
|
34
44
|
export declare const percipioFontFamily: {
|
|
35
|
-
readonly accent: "\"Roboto\",
|
|
36
|
-
readonly base: "\"Roboto\",
|
|
45
|
+
readonly accent: "\"Skillsoft Sans\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
46
|
+
readonly base: "\"Skillsoft Text\", -apple-system, BlinkMacSystemFont, \"Segoe UI\",\n\"Roboto\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\nsans-serif";
|
|
37
47
|
readonly monospace: "\"Roboto Mono\", monospace";
|
|
38
48
|
readonly system: "\"Roboto\", sans-serif";
|
|
39
49
|
};
|
|
@@ -9,7 +9,10 @@ export const fontMonospace = `Monaco, Menlo, "Ubuntu Mono", "Droid Sans Mono", C
|
|
|
9
9
|
monospace`;
|
|
10
10
|
export const fontSystem = `-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Ubuntu",
|
|
11
11
|
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif`;
|
|
12
|
-
export const
|
|
12
|
+
export const fontPercipioAccent = `"Skillsoft Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
|
|
13
|
+
"Roboto", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
14
|
+
sans-serif`;
|
|
15
|
+
export const fontPercipioBase = `"Skillsoft Text", -apple-system, BlinkMacSystemFont, "Segoe UI",
|
|
13
16
|
"Roboto", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
14
17
|
sans-serif`;
|
|
15
18
|
export const fontFamily = {
|
|
@@ -40,9 +43,17 @@ export const fontWeight = {
|
|
|
40
43
|
700: 700,
|
|
41
44
|
400: 400
|
|
42
45
|
};
|
|
46
|
+
|
|
47
|
+
/** Title/bold semantic tokens use 500 (Medium), matching Skillsoft + Percipio Roboto webfonts. */
|
|
48
|
+
export const fontWeightMediumTitle = {
|
|
49
|
+
...fontWeight,
|
|
50
|
+
title: 500,
|
|
51
|
+
bold: 500,
|
|
52
|
+
500: 500
|
|
53
|
+
};
|
|
43
54
|
export const percipioFontFamily = {
|
|
44
|
-
accent:
|
|
45
|
-
base:
|
|
55
|
+
accent: fontPercipioAccent,
|
|
56
|
+
base: fontPercipioBase,
|
|
46
57
|
monospace: '"Roboto Mono", monospace',
|
|
47
58
|
system: '"Roboto", sans-serif'
|
|
48
59
|
};
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-styles",
|
|
3
3
|
"description": "Styleguide & Component library for codecademy.com",
|
|
4
|
-
"version": "17.14.1-alpha.
|
|
4
|
+
"version": "17.14.1-alpha.c95ffe.0",
|
|
5
5
|
"author": "Jake Hiller <jake@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/variance": "0.26.2-alpha.
|
|
7
|
+
"@codecademy/variance": "0.26.2-alpha.c95ffe.0",
|
|
8
8
|
"@emotion/is-prop-valid": "^1.1.0",
|
|
9
9
|
"framer-motion": "^11.18.0",
|
|
10
10
|
"get-nonce": "^1.0.0",
|