-
Notifications
You must be signed in to change notification settings - Fork 5
[Task]: Add MWI theme story #120
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
Open
LagunaElectric
wants to merge
10
commits into
Ishadijcks:develop
Choose a base branch
from
LagunaElectric:feat-add-custom-tailwind-to-histoire
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9a6bb0f
add MWI theme story and associated components
LagunaElectric 2efdd46
add floating-vue, vueuse as dev dependencies, and a copy icon
LagunaElectric 9709fda
add copy buttons to the color samples
LagunaElectric 0616b3a
add color sample variations
LagunaElectric 3d87738
update variation icons
LagunaElectric 896756e
refactor: compute display class instead of using prop directly
LagunaElectric 0515b75
finalize color sample story
LagunaElectric dfac2d6
add live gradient preview
LagunaElectric 7c59f1d
polish color samples
LagunaElectric 3016a88
cleanup unused variables in color sample
LagunaElectric File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,2 @@ | ||
| import "./histoire.css"; | ||
| import "./src/style.css" |
This file contains hidden or 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 hidden or 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,108 @@ | ||
| :root { | ||
| --color-primary: var(--color-space-600); | ||
| --color-primary-hover: var(--color-space-500); | ||
| --color-secondary: var(--color-burble-350); | ||
| --color-secondary-hover: var(--color-burble-300); | ||
| --color-progress: var(--color-burble-350); | ||
| --color-hitpoints: var(--color-jade-500); | ||
| --color-manapoints: var(--color-ocean-400); | ||
| --color-ability: #dd7b5c; | ||
| --color-ability-hover: #e49880; | ||
| --color-market-sell: #d95961; | ||
| --color-market-sell-hover: #e38289; | ||
| --color-market-buy: #2fc4a7; | ||
| --color-market-buy-hover: #59d0b9; | ||
| --color-success: var(--color-orange-550); | ||
| --color-success-hover: var(--color-orange-500); | ||
| --color-warning: #db3333; | ||
| --color-warning-hover: #eb3f3f; | ||
| --color-empty: #d0d0d0; | ||
| --color-empty-hover: #e2e2e2; | ||
| --color-disabled: #959595; | ||
| --color-divider: var(--color-midnight-400); | ||
| --color-text-dark-mode: var(--color-neutral-100); | ||
| --color-background: #131c37; | ||
| --color-background-game: var(--color-midnight-900); | ||
| --color-burble-200: #c7b5e3; | ||
| --color-burble-250: #baa2db; | ||
| --color-burble-300: #ac8fd4; | ||
| --color-burble-350: #a272e4; | ||
| --color-burble-400: #906ac6; | ||
| --color-carol-300: #dd7b5c; | ||
| --color-jade-300: #82dcca; | ||
| --color-jade-400: #59d0b9; | ||
| --color-jade-500: #2fc4a7; | ||
| --color-midnight-100: #454771; | ||
| --color-midnight-200: #3f4166; | ||
| --color-midnight-300: #393a5b; | ||
| --color-midnight-400: #323450; | ||
| --color-midnight-500: #2c2e45; | ||
| --color-midnight-550: #292a40; | ||
| --color-midnight-600: #26273a; | ||
| --color-midnight-700: #20212f; | ||
| --color-midnight-800: #191a24; | ||
| --color-midnight-900: #131419; | ||
| --color-midnight-100-opacity-50: rgba(69, 71, 113, 0.5019607843137255); | ||
| --color-midnight-200-opacity-50: rgba(63, 65, 102, 0.5019607843137255); | ||
| --color-midnight-300-opacity-50: rgba(57, 58, 91, 0.5019607843137255); | ||
| --color-midnight-400-opacity-50: rgba(50, 52, 80, 0.5019607843137255); | ||
| --color-midnight-500-opacity-50: rgba(44, 46, 69, 0.5019607843137255); | ||
| --color-midnight-600-opacity-50: rgba(38, 39, 58, 0.5019607843137255); | ||
| --color-midnight-700-opacity-50: rgba(32, 33, 47, 0.5019607843137255); | ||
| --color-midnight-800-opacity-50: rgba(25, 26, 36, 0.5019607843137255); | ||
| --color-midnight-900-opacity-50: rgba(19, 20, 25, 0.5019607843137255); | ||
| --color-midnight-100-opacity-25: rgba(69, 71, 113, 0.25098039215686274); | ||
| --color-midnight-200-opacity-25: rgba(63, 65, 102, 0.25098039215686274); | ||
| --color-midnight-300-opacity-25: rgba(57, 58, 91, 0.25098039215686274); | ||
| --color-midnight-400-opacity-25: rgba(50, 52, 80, 0.25098039215686274); | ||
| --color-midnight-500-opacity-25: rgba(44, 46, 69, 0.25098039215686274); | ||
| --color-midnight-600-opacity-25: rgba(38, 39, 58, 0.25098039215686274); | ||
| --color-midnight-700-opacity-25: rgba(32, 33, 47, 0.25098039215686274); | ||
| --color-midnight-800-opacity-25: rgba(25, 26, 36, 0.25098039215686274); | ||
| --color-midnight-900-opacity-25: rgba(19, 20, 25, 0.25098039215686274); | ||
| --color-neutral-50: #f3f3f3; | ||
| --color-neutral-100: #e7e7e7; | ||
| --color-neutral-200: #d0d0d0; | ||
| --color-ocean-200: #a5d1f3; | ||
| --color-ocean-300: #77baec; | ||
| --color-ocean-350: #61afe9; | ||
| --color-ocean-400: #4aa3e6; | ||
| --color-ocean-500: #1d8ce0; | ||
| --color-ocean-600: #1770b3; | ||
| --color-ocean-700: #115486; | ||
| --color-ocean-800: #0c385a; | ||
| --color-orange-400: #fbb54b; | ||
| --color-orange-500: #faa21e; | ||
| --color-orange-550: #ee9a1d; | ||
| --color-orange-600: #e1921b; | ||
| --color-orange-650: #c57a09; | ||
| --color-orange-700: #966112; | ||
| --color-scarlet-400: #d95c64; | ||
| --color-scarlet-500: #d0333d; | ||
| --color-scarlet-600: #a62931; | ||
| --color-scarlet-700: #7d1f25; | ||
| --color-scarlet-800: #531418; | ||
| --color-space-100: #dde2f8; | ||
| --color-space-200: #bbc5f1; | ||
| --color-space-250: #a9b6ed; | ||
| --color-space-300: #98a7e9; | ||
| --color-space-400: #768ae2; | ||
| --color-space-500: #546ddb; | ||
| --color-space-600: #4357af; | ||
| --color-space-650: #3c4e9d; | ||
| --color-space-700: #35458b; | ||
| --color-space-750: #2e3c79; | ||
| --color-space-800: #273366; | ||
| --color-space-850: #202a54; | ||
| --color-space-880: #1c2549; | ||
| --color-space-900: #192142; | ||
| --color-space-950: #121830; | ||
| } | ||
|
|
||
| body { | ||
| font-family: "Roboto", "Helvetica", "Arial", sans-serif; | ||
| } | ||
|
|
||
| code { | ||
| font-family: "Operator Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace !important; | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.