Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
macandcheese committed Jan 25, 2024
1 parent 7921c2f commit ba39278
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,21 @@ export const darkModeRTL_TestOnly = (): string => html`
`;

darkModeRTL_TestOnly.parameters = { modes: modesDarkDefault };

export const theming_TestOnly = (): string => html`
<calcite-notice
closable
open
icon="layer"
style="--calcite-notice-background-color: rgb(182, 101, 101);
--calcite-notice-border-color: rgb(183, 61, 61);
--calcite-notice-box-shadow: var(--calcite-shadow-sm);
--calcite-notice-corner-radius: 4px;
--calcite-notice-icon-color: rgb(244, 229, 229);
--calcite-notice-close-icon-color: orange;
--calcite-notice-text-color: rgb(244, 229, 229);"
>
<div slot="title">This is a message</div>
<div slot="message">Be sure you know what you are doing, folks.</div>
</calcite-notice>
`;

0 comments on commit ba39278

Please sign in to comment.