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

add new appearance options #185

Merged
merged 1 commit into from
Oct 10, 2024
Merged
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
36 changes: 36 additions & 0 deletions types/shared.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,42 @@ export declare type AppearanceVariables = {
* The color used for primary actions and links. This accepts hex values or RGB/HSL strings.
*/
actionPrimaryColorText?: string;
/**
* The line type used for text decoration of primary actions and links. This accepts a valid text decoration line value.
*/
actionPrimaryTextDecorationLine?: string;
/**
* The color used for text decoration of primary actions and links. This accepts hex values or RGB/HSL strings.
*/
actionPrimaryTextDecorationColor?: string;
/**
* The style of text decoration of primary actions and links. This accepts a valid text decoration style value.
*/
actionPrimaryTextDecorationStyle?: string;
/**
* The thickness of text decoration of primary actions and links. This accepts a valid text decoration thickness value.
*/
actionPrimaryTextDecorationThickness?: string;
/**
* The color used for secondary actions and links. This accepts hex values or RGB/HSL strings.
*/
actionSecondaryColorText?: string;
/**
* The line type used for text decoration of secondary actions and links. This accepts a valid text decoration line value.
*/
actionSecondaryTextDecorationLine?: string;
/**
* The color used for text decoration of secondary actions and links. This accepts hex values or RGB/HSL strings.
*/
actionSecondaryTextDecorationColor?: string;
/**
* The style of text decoration of secondary actions and links. This accepts a valid text decoration style value.
*/
actionSecondaryTextDecorationStyle?: string;
/**
* The thickness of text decoration of secondary actions and links. This accepts a valid text decoration thickness value.
*/
actionSecondaryTextDecorationThickness?: string;

// Neutral Badge Colors
/**
Expand Down Expand Up @@ -261,6 +293,10 @@ export declare type AppearanceVariables = {
* A z-index to use for the overlay throughout embedded components. Set this number to control the z-order of the overlay.
*/
overlayZIndex?: number;
/**
* The backdrop color when an overlay is opened. This accepts hex values or RGB/RGBA/HSL strings.
*/
overlayBackdropColor?: string;

// Body Typography
/**
Expand Down
Loading