Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(tokens): update palette tokens from figma #4457

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
324 changes: 162 additions & 162 deletions packages/orbit-design-tokens/output/docs-tokens.json

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions packages/orbit-design-tokens/output/tokens.css

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions packages/orbit-design-tokens/output/tokens.less

Large diffs are not rendered by default.

162 changes: 81 additions & 81 deletions packages/orbit-design-tokens/output/tokens.scss

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions packages/orbit-design-tokens/output/tokens.styl

Large diffs are not rendered by default.

160 changes: 80 additions & 80 deletions packages/orbit-design-tokens/output/tokens.xml

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "color"
},
"darker": {
"value": "#004680",
"value": "#003866",
"internal": true,
"type": "color"
},
Expand All @@ -38,7 +38,7 @@
"type": "color"
},
"normal": {
"value": "#0172CB",
"value": "#0070C8",
"internal": true,
"type": "color"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "color"
},
"darker": {
"value": "#235C2B",
"value": "#1C4A23",
"internal": true,
"type": "color"
},
Expand All @@ -38,7 +38,7 @@
"type": "color"
},
"normal": {
"value": "#28A138",
"value": "#0A932B",
"internal": true,
"type": "color"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
"palette": {
"orange": {
"dark": {
"value": "#AD5700",
"value": "#A75400",
"internal": true,
"type": "color"
},
"dark-active": {
"value": "#954A00",
"value": "#803F00",
"internal": true,
"type": "color"
},
"dark-hover": {
"value": "#A75400",
"value": "#954A00",
"internal": true,
"type": "color"
},
"darker": {
"value": "#803F00",
"value": "#663200",
"internal": true,
"type": "color"
},
Expand All @@ -38,17 +38,17 @@
"type": "color"
},
"normal": {
"value": "#DF7B00",
"value": "#CF6C00",
"internal": true,
"type": "color"
},
"normal-active": {
"value": "#B26200",
"value": "#AD5700",
"internal": true,
"type": "color"
},
"normal-hover": {
"value": "#C96F00",
"value": "#B86000",
"internal": true,
"type": "color"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "color"
},
"darker": {
"value": "#005C4E",
"value": "#004D41",
"internal": true,
"type": "color"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "color"
},
"darker": {
"value": "#760909",
"value": "#630808",
"internal": true,
"type": "color"
},
Expand Down
26 changes: 13 additions & 13 deletions packages/orbit-design-tokens/src/js/defaultFoundation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ const blue = {
dark: "#005AA3",
darkActive: "#003E70",
darkHover: "#004F8F",
darker: "#004680",
darker: "#003866",
light: "#E8F4FD",
lightActive: "#C7E4FA",
lightHover: "#DEF0FC",
normal: "#0172CB",
normal: "#0070C8",
normalActive: "#01508E",
normalHover: "#0161AC",
};
Expand All @@ -249,11 +249,11 @@ const green = {
dark: "#2D7738",
darkActive: "#1F5126",
darkHover: "#276831",
darker: "#235C2B",
darker: "#1C4A23",
light: "#EAF5EA",
lightActive: "#CDE4CF",
lightHover: "#E1EFE2",
normal: "#28A138",
normal: "#0A932B",
normalActive: "#1D7228",
normalHover: "#238B31",
};
Expand All @@ -269,22 +269,22 @@ const ink = {
normalHover: "#3E4E63",
};
const orange = {
dark: "#AD5700",
darkActive: "#954A00",
darkHover: "#A75400",
darker: "#803F00",
dark: "#A75400",
darkActive: "#803F00",
darkHover: "#954A00",
darker: "#663200",
light: "#FEF2E6",
lightActive: "#FAE2C6",
lightHover: "#FCECDA",
normal: "#DF7B00",
normalActive: "#B26200",
normalHover: "#C96F00",
normal: "#CF6C00",
normalActive: "#AD5700",
normalHover: "#B86000",
};
const product = {
dark: "#007A69",
darkActive: "#006657",
darkHover: "#007060",
darker: "#005C4E",
darker: "#004D41",
light: "#E1F4F3",
lightActive: "#BFE8E2",
lightHover: "#D6F0EC",
Expand All @@ -296,7 +296,7 @@ const red = {
dark: "#970C0C",
darkActive: "#6D0909",
darkHover: "#890B0B",
darker: "#760909",
darker: "#630808",
light: "#FAEAEA",
lightActive: "#F3CECE",
lightHover: "#F8E2E2",
Expand Down
Loading