-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement tier 3 token structure #121
- Loading branch information
1 parent
9bb86cd
commit 5149f5d
Showing
12 changed files
with
147 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) 2024 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license | ||
// See LICENSE in the project root for license information. | ||
|
||
// --------------------------------------------------------------------- | ||
|
||
// Import Auro tokens | ||
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables'; | ||
|
||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/breakpoints'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/core'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/utilityClasses/displayProperties'; | ||
|
||
:host { | ||
color: var(--ds-auro-flight-header-text-color); | ||
} | ||
|
||
.daysChanged { | ||
color: var(--ds-auro-flight-header-days-changed-text-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) 2024 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license | ||
// See LICENSE in the project root for license information. | ||
|
||
// --------------------------------------------------------------------- | ||
|
||
/* stylelint-disable selector-class-pattern */ | ||
|
||
// Import Auro tokens | ||
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables'; | ||
|
||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/breakpoints'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/core'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/utilityClasses/displayProperties'; | ||
|
||
.departureTime { | ||
color: var(--ds-auro-flight-main-time-text-color); | ||
} | ||
|
||
.departureStation { | ||
color: var(--ds-auro-flight-main-station-text-color); | ||
} | ||
|
||
.arrivalTime { | ||
color: var(--ds-auro-flight-main-time-text-color); | ||
} | ||
|
||
.arrivalStation { | ||
color: var(--ds-auro-flight-main-station-text-color); | ||
} | ||
|
||
.util_lineThrough { | ||
color: var(--ds-auro-flight-main-cancelled-station-text-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright (c) 2024 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license | ||
// See LICENSE in the project root for license information. | ||
|
||
// --------------------------------------------------------------------- | ||
|
||
// Import Auro tokens | ||
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables'; | ||
|
||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/breakpoints'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/core'; | ||
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/utilityClasses/displayProperties'; | ||
|
||
[name='footer'] { | ||
color: var(--ds-auro-flight-footer-text-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables'; | ||
|
||
:host { | ||
--ds-auro-flight-footer-text-color: var(--ds-color-text-secondary-default, #{$ds-color-text-secondary-default}); | ||
--ds-auro-flight-header-days-changed-text-color: var(--ds-color-utility-error-default, #{$ds-color-utility-error-default}); | ||
--ds-auro-flight-header-text-color: var(--ds-color-text-secondary-default, #{$ds-color-text-secondary-default}); | ||
--ds-auro-flight-cancelled-station-text-color: var(--ds-color-utility-error-default, #{$ds-color-utility-error-default}); | ||
--ds-auro-flight-station-text-color: var(--ds-color-text-secondary-default, #{$ds-color-text-secondary-default}); | ||
--ds-auro-flight-time-text-color: var(--ds-color-text-primary-default, #{$ds-color-text-primary-default}); | ||
} |