Skip to content

Instantly share code, notes, and snippets.

@autarch
Created February 5, 2022 18:45
Show Gist options
  • Select an option

  • Save autarch/96bd4e72722d196b3d07288bb25b1234 to your computer and use it in GitHub Desktop.

Select an option

Save autarch/96bd4e72722d196b3d07288bb25b1234 to your computer and use it in GitHub Desktop.
pub struct Modifiers {
hover: &'static str,
focus: &'static str,
focus_within: &'static str,
focus_visible: &'static str,
active: &'static str,
visited: &'static str,
target: &'static str,
first: &'static str,
last: &'static str,
only: &'static str,
odd: &'static str,
even: &'static str,
first_of_type: &'static str,
last_of_type: &'static str,
only_of_type: &'static str,
empty: &'static str,
disabled: &'static str,
checked: &'static str,
indeterminate: &'static str,
default: &'static str,
required: &'static str,
valid: &'static str,
invalid: &'static str,
in_range: &'static str,
out_of_range: &'static str,
placeholder_shown: &'static str,
autofill: &'static str,
read_only: &'static str,
open: &'static str,
before: &'static str,
after: &'static str,
first_letter: &'static str,
first_line: &'static str,
marker: &'static str,
selection: &'static str,
file: &'static str,
placeholder: &'static str,
sm: &'static str,
md: &'static str,
lg: &'static str,
xl: &'static str,
two_xl: &'static str,
dark: &'static str,
portrait: &'static str,
landscape: &'static str,
motion_safe: &'static str,
motion_reduce: &'static str,
print: &'static str,
rtl: &'static str,
ltr: &'static str,
}
pub static MODIFIERS: Modifiers = Modifiers {
hover: "hover",
focus: "focus",
focus_within: "focus-within",
focus_visible: "focus-visible",
active: "active",
visited: "visited",
target: "target",
first: "first",
last: "last",
only: "only",
odd: "odd",
even: "even",
first_of_type: "first-of-type",
last_of_type: "last-of-type",
only_of_type: "only-of-type",
empty: "empty",
disabled: "disabled",
checked: "checked",
indeterminate: "indeterminate",
default: "default",
required: "required",
valid: "valid",
invalid: "invalid",
in_range: "in-range",
out_of_range: "out-of-range",
placeholder_shown: "placeholder-shown",
autofill: "autofill",
read_only: "read-only",
open: "open",
before: "before",
after: "after",
first_letter: "first-letter",
first_line: "first-line",
marker: "marker",
selection: "selection",
file: "file",
placeholder: "placeholder",
sm: "sm",
md: "md",
lg: "lg",
xl: "xl",
two_xl: "2xl",
dark: "dark",
portrait: "portrait",
landscape: "landscape",
motion_safe: "motion-safe",
motion_reduce: "motion-reduce",
print: "print",
rtl: "rtl",
ltr: "ltr",
};
pub struct Accessibility {
not_sr_only: &'static str,
sr_only: &'static str,
}
pub struct Animation {
animate_bounce: &'static str,
animate_none: &'static str,
animate_ping: &'static str,
animate_pulse: &'static str,
animate_spin: &'static str,
delay_100: &'static str,
delay_1000: &'static str,
delay_150: &'static str,
delay_200: &'static str,
delay_300: &'static str,
delay_500: &'static str,
delay_700: &'static str,
delay_75: &'static str,
duration_100: &'static str,
duration_1000: &'static str,
duration_150: &'static str,
duration_200: &'static str,
duration_300: &'static str,
duration_500: &'static str,
duration_700: &'static str,
duration_75: &'static str,
ease_in: &'static str,
ease_in_out: &'static str,
ease_linear: &'static str,
ease_out: &'static str,
transition: &'static str,
transition_all: &'static str,
transition_colors: &'static str,
transition_none: &'static str,
transition_opacity: &'static str,
transition_shadow: &'static str,
transition_transform: &'static str,
}
pub struct Aspect {
aspect_h_auto: &'static str,
aspect_h_square: &'static str,
aspect_h_video: &'static str,
aspect_none: &'static str,
aspect_w_auto: &'static str,
aspect_w_square: &'static str,
aspect_w_video: &'static str,
}
pub struct Backgrounds {
bg_amber_100: &'static str,
bg_amber_200: &'static str,
bg_amber_300: &'static str,
bg_amber_400: &'static str,
bg_amber_50: &'static str,
bg_amber_500: &'static str,
bg_amber_600: &'static str,
bg_amber_700: &'static str,
bg_amber_800: &'static str,
bg_amber_900: &'static str,
bg_auto: &'static str,
bg_black: &'static str,
bg_blue_100: &'static str,
bg_blue_200: &'static str,
bg_blue_300: &'static str,
bg_blue_400: &'static str,
bg_blue_50: &'static str,
bg_blue_500: &'static str,
bg_blue_600: &'static str,
bg_blue_700: &'static str,
bg_blue_800: &'static str,
bg_blue_900: &'static str,
bg_bottom: &'static str,
bg_center: &'static str,
bg_clip_border: &'static str,
bg_clip_content: &'static str,
bg_clip_padding: &'static str,
bg_clip_text: &'static str,
bg_contain: &'static str,
bg_cover: &'static str,
bg_current: &'static str,
bg_cyan_100: &'static str,
bg_cyan_200: &'static str,
bg_cyan_300: &'static str,
bg_cyan_400: &'static str,
bg_cyan_50: &'static str,
bg_cyan_500: &'static str,
bg_cyan_600: &'static str,
bg_cyan_700: &'static str,
bg_cyan_800: &'static str,
bg_cyan_900: &'static str,
bg_emerald_100: &'static str,
bg_emerald_200: &'static str,
bg_emerald_300: &'static str,
bg_emerald_400: &'static str,
bg_emerald_50: &'static str,
bg_emerald_500: &'static str,
bg_emerald_600: &'static str,
bg_emerald_700: &'static str,
bg_emerald_800: &'static str,
bg_emerald_900: &'static str,
bg_fixed: &'static str,
bg_fuchsia_100: &'static str,
bg_fuchsia_200: &'static str,
bg_fuchsia_300: &'static str,
bg_fuchsia_400: &'static str,
bg_fuchsia_50: &'static str,
bg_fuchsia_500: &'static str,
bg_fuchsia_600: &'static str,
bg_fuchsia_700: &'static str,
bg_fuchsia_800: &'static str,
bg_fuchsia_900: &'static str,
bg_gradient_to_b: &'static str,
bg_gradient_to_bl: &'static str,
bg_gradient_to_br: &'static str,
bg_gradient_to_l: &'static str,
bg_gradient_to_r: &'static str,
bg_gradient_to_t: &'static str,
bg_gradient_to_tl: &'static str,
bg_gradient_to_tr: &'static str,
bg_gray_100: &'static str,
bg_gray_200: &'static str,
bg_gray_300: &'static str,
bg_gray_400: &'static str,
bg_gray_50: &'static str,
bg_gray_500: &'static str,
bg_gray_600: &'static str,
bg_gray_700: &'static str,
bg_gray_800: &'static str,
bg_gray_900: &'static str,
bg_green_100: &'static str,
bg_green_200: &'static str,
bg_green_300: &'static str,
bg_green_400: &'static str,
bg_green_50: &'static str,
bg_green_500: &'static str,
bg_green_600: &'static str,
bg_green_700: &'static str,
bg_green_800: &'static str,
bg_green_900: &'static str,
bg_indigo_100: &'static str,
bg_indigo_200: &'static str,
bg_indigo_300: &'static str,
bg_indigo_400: &'static str,
bg_indigo_50: &'static str,
bg_indigo_500: &'static str,
bg_indigo_600: &'static str,
bg_indigo_700: &'static str,
bg_indigo_800: &'static str,
bg_indigo_900: &'static str,
bg_inherit: &'static str,
bg_left: &'static str,
bg_left_bottom: &'static str,
bg_left_top: &'static str,
bg_lime_100: &'static str,
bg_lime_200: &'static str,
bg_lime_300: &'static str,
bg_lime_400: &'static str,
bg_lime_50: &'static str,
bg_lime_500: &'static str,
bg_lime_600: &'static str,
bg_lime_700: &'static str,
bg_lime_800: &'static str,
bg_lime_900: &'static str,
bg_local: &'static str,
bg_neutral_100: &'static str,
bg_neutral_200: &'static str,
bg_neutral_300: &'static str,
bg_neutral_400: &'static str,
bg_neutral_50: &'static str,
bg_neutral_500: &'static str,
bg_neutral_600: &'static str,
bg_neutral_700: &'static str,
bg_neutral_800: &'static str,
bg_neutral_900: &'static str,
bg_no_repeat: &'static str,
bg_none: &'static str,
bg_opacity_0: &'static str,
bg_opacity_10: &'static str,
bg_opacity_100: &'static str,
bg_opacity_20: &'static str,
bg_opacity_25: &'static str,
bg_opacity_30: &'static str,
bg_opacity_40: &'static str,
bg_opacity_5: &'static str,
bg_opacity_50: &'static str,
bg_opacity_60: &'static str,
bg_opacity_70: &'static str,
bg_opacity_75: &'static str,
bg_opacity_80: &'static str,
bg_opacity_90: &'static str,
bg_opacity_95: &'static str,
bg_orange_100: &'static str,
bg_orange_200: &'static str,
bg_orange_300: &'static str,
bg_orange_400: &'static str,
bg_orange_50: &'static str,
bg_orange_500: &'static str,
bg_orange_600: &'static str,
bg_orange_700: &'static str,
bg_orange_800: &'static str,
bg_orange_900: &'static str,
bg_origin_border: &'static str,
bg_origin_content: &'static str,
bg_origin_padding: &'static str,
bg_pink_100: &'static str,
bg_pink_200: &'static str,
bg_pink_300: &'static str,
bg_pink_400: &'static str,
bg_pink_50: &'static str,
bg_pink_500: &'static str,
bg_pink_600: &'static str,
bg_pink_700: &'static str,
bg_pink_800: &'static str,
bg_pink_900: &'static str,
bg_purple_100: &'static str,
bg_purple_200: &'static str,
bg_purple_300: &'static str,
bg_purple_400: &'static str,
bg_purple_50: &'static str,
bg_purple_500: &'static str,
bg_purple_600: &'static str,
bg_purple_700: &'static str,
bg_purple_800: &'static str,
bg_purple_900: &'static str,
bg_red_100: &'static str,
bg_red_200: &'static str,
bg_red_300: &'static str,
bg_red_400: &'static str,
bg_red_50: &'static str,
bg_red_500: &'static str,
bg_red_600: &'static str,
bg_red_700: &'static str,
bg_red_800: &'static str,
bg_red_900: &'static str,
bg_repeat: &'static str,
bg_repeat_round: &'static str,
bg_repeat_space: &'static str,
bg_repeat_x: &'static str,
bg_repeat_y: &'static str,
bg_right: &'static str,
bg_right_bottom: &'static str,
bg_right_top: &'static str,
bg_rose_100: &'static str,
bg_rose_200: &'static str,
bg_rose_300: &'static str,
bg_rose_400: &'static str,
bg_rose_50: &'static str,
bg_rose_500: &'static str,
bg_rose_600: &'static str,
bg_rose_700: &'static str,
bg_rose_800: &'static str,
bg_rose_900: &'static str,
bg_scroll: &'static str,
bg_sky_100: &'static str,
bg_sky_200: &'static str,
bg_sky_300: &'static str,
bg_sky_400: &'static str,
bg_sky_50: &'static str,
bg_sky_500: &'static str,
bg_sky_600: &'static str,
bg_sky_700: &'static str,
bg_sky_800: &'static str,
bg_sky_900: &'static str,
bg_slate_100: &'static str,
bg_slate_200: &'static str,
bg_slate_300: &'static str,
bg_slate_400: &'static str,
bg_slate_50: &'static str,
bg_slate_500: &'static str,
bg_slate_600: &'static str,
bg_slate_700: &'static str,
bg_slate_800: &'static str,
bg_slate_900: &'static str,
bg_stone_100: &'static str,
bg_stone_200: &'static str,
bg_stone_300: &'static str,
bg_stone_400: &'static str,
bg_stone_50: &'static str,
bg_stone_500: &'static str,
bg_stone_600: &'static str,
bg_stone_700: &'static str,
bg_stone_800: &'static str,
bg_stone_900: &'static str,
bg_teal_100: &'static str,
bg_teal_200: &'static str,
bg_teal_300: &'static str,
bg_teal_400: &'static str,
bg_teal_50: &'static str,
bg_teal_500: &'static str,
bg_teal_600: &'static str,
bg_teal_700: &'static str,
bg_teal_800: &'static str,
bg_teal_900: &'static str,
bg_top: &'static str,
bg_transparent: &'static str,
bg_violet_100: &'static str,
bg_violet_200: &'static str,
bg_violet_300: &'static str,
bg_violet_400: &'static str,
bg_violet_50: &'static str,
bg_violet_500: &'static str,
bg_violet_600: &'static str,
bg_violet_700: &'static str,
bg_violet_800: &'static str,
bg_violet_900: &'static str,
bg_white: &'static str,
bg_yellow_100: &'static str,
bg_yellow_200: &'static str,
bg_yellow_300: &'static str,
bg_yellow_400: &'static str,
bg_yellow_50: &'static str,
bg_yellow_500: &'static str,
bg_yellow_600: &'static str,
bg_yellow_700: &'static str,
bg_yellow_800: &'static str,
bg_yellow_900: &'static str,
bg_zinc_100: &'static str,
bg_zinc_200: &'static str,
bg_zinc_300: &'static str,
bg_zinc_400: &'static str,
bg_zinc_50: &'static str,
bg_zinc_500: &'static str,
bg_zinc_600: &'static str,
bg_zinc_700: &'static str,
bg_zinc_800: &'static str,
bg_zinc_900: &'static str,
from_amber_100: &'static str,
from_amber_200: &'static str,
from_amber_300: &'static str,
from_amber_400: &'static str,
from_amber_50: &'static str,
from_amber_500: &'static str,
from_amber_600: &'static str,
from_amber_700: &'static str,
from_amber_800: &'static str,
from_amber_900: &'static str,
from_black: &'static str,
from_blue_100: &'static str,
from_blue_200: &'static str,
from_blue_300: &'static str,
from_blue_400: &'static str,
from_blue_50: &'static str,
from_blue_500: &'static str,
from_blue_600: &'static str,
from_blue_700: &'static str,
from_blue_800: &'static str,
from_blue_900: &'static str,
from_current: &'static str,
from_cyan_100: &'static str,
from_cyan_200: &'static str,
from_cyan_300: &'static str,
from_cyan_400: &'static str,
from_cyan_50: &'static str,
from_cyan_500: &'static str,
from_cyan_600: &'static str,
from_cyan_700: &'static str,
from_cyan_800: &'static str,
from_cyan_900: &'static str,
from_emerald_100: &'static str,
from_emerald_200: &'static str,
from_emerald_300: &'static str,
from_emerald_400: &'static str,
from_emerald_50: &'static str,
from_emerald_500: &'static str,
from_emerald_600: &'static str,
from_emerald_700: &'static str,
from_emerald_800: &'static str,
from_emerald_900: &'static str,
from_fuchsia_100: &'static str,
from_fuchsia_200: &'static str,
from_fuchsia_300: &'static str,
from_fuchsia_400: &'static str,
from_fuchsia_50: &'static str,
from_fuchsia_500: &'static str,
from_fuchsia_600: &'static str,
from_fuchsia_700: &'static str,
from_fuchsia_800: &'static str,
from_fuchsia_900: &'static str,
from_gray_100: &'static str,
from_gray_200: &'static str,
from_gray_300: &'static str,
from_gray_400: &'static str,
from_gray_50: &'static str,
from_gray_500: &'static str,
from_gray_600: &'static str,
from_gray_700: &'static str,
from_gray_800: &'static str,
from_gray_900: &'static str,
from_green_100: &'static str,
from_green_200: &'static str,
from_green_300: &'static str,
from_green_400: &'static str,
from_green_50: &'static str,
from_green_500: &'static str,
from_green_600: &'static str,
from_green_700: &'static str,
from_green_800: &'static str,
from_green_900: &'static str,
from_indigo_100: &'static str,
from_indigo_200: &'static str,
from_indigo_300: &'static str,
from_indigo_400: &'static str,
from_indigo_50: &'static str,
from_indigo_500: &'static str,
from_indigo_600: &'static str,
from_indigo_700: &'static str,
from_indigo_800: &'static str,
from_indigo_900: &'static str,
from_inherit: &'static str,
from_lime_100: &'static str,
from_lime_200: &'static str,
from_lime_300: &'static str,
from_lime_400: &'static str,
from_lime_50: &'static str,
from_lime_500: &'static str,
from_lime_600: &'static str,
from_lime_700: &'static str,
from_lime_800: &'static str,
from_lime_900: &'static str,
from_neutral_100: &'static str,
from_neutral_200: &'static str,
from_neutral_300: &'static str,
from_neutral_400: &'static str,
from_neutral_50: &'static str,
from_neutral_500: &'static str,
from_neutral_600: &'static str,
from_neutral_700: &'static str,
from_neutral_800: &'static str,
from_neutral_900: &'static str,
from_orange_100: &'static str,
from_orange_200: &'static str,
from_orange_300: &'static str,
from_orange_400: &'static str,
from_orange_50: &'static str,
from_orange_500: &'static str,
from_orange_600: &'static str,
from_orange_700: &'static str,
from_orange_800: &'static str,
from_orange_900: &'static str,
from_pink_100: &'static str,
from_pink_200: &'static str,
from_pink_300: &'static str,
from_pink_400: &'static str,
from_pink_50: &'static str,
from_pink_500: &'static str,
from_pink_600: &'static str,
from_pink_700: &'static str,
from_pink_800: &'static str,
from_pink_900: &'static str,
from_purple_100: &'static str,
from_purple_200: &'static str,
from_purple_300: &'static str,
from_purple_400: &'static str,
from_purple_50: &'static str,
from_purple_500: &'static str,
from_purple_600: &'static str,
from_purple_700: &'static str,
from_purple_800: &'static str,
from_purple_900: &'static str,
from_red_100: &'static str,
from_red_200: &'static str,
from_red_300: &'static str,
from_red_400: &'static str,
from_red_50: &'static str,
from_red_500: &'static str,
from_red_600: &'static str,
from_red_700: &'static str,
from_red_800: &'static str,
from_red_900: &'static str,
from_rose_100: &'static str,
from_rose_200: &'static str,
from_rose_300: &'static str,
from_rose_400: &'static str,
from_rose_50: &'static str,
from_rose_500: &'static str,
from_rose_600: &'static str,
from_rose_700: &'static str,
from_rose_800: &'static str,
from_rose_900: &'static str,
from_sky_100: &'static str,
from_sky_200: &'static str,
from_sky_300: &'static str,
from_sky_400: &'static str,
from_sky_50: &'static str,
from_sky_500: &'static str,
from_sky_600: &'static str,
from_sky_700: &'static str,
from_sky_800: &'static str,
from_sky_900: &'static str,
from_slate_100: &'static str,
from_slate_200: &'static str,
from_slate_300: &'static str,
from_slate_400: &'static str,
from_slate_50: &'static str,
from_slate_500: &'static str,
from_slate_600: &'static str,
from_slate_700: &'static str,
from_slate_800: &'static str,
from_slate_900: &'static str,
from_stone_100: &'static str,
from_stone_200: &'static str,
from_stone_300: &'static str,
from_stone_400: &'static str,
from_stone_50: &'static str,
from_stone_500: &'static str,
from_stone_600: &'static str,
from_stone_700: &'static str,
from_stone_800: &'static str,
from_stone_900: &'static str,
from_teal_100: &'static str,
from_teal_200: &'static str,
from_teal_300: &'static str,
from_teal_400: &'static str,
from_teal_50: &'static str,
from_teal_500: &'static str,
from_teal_600: &'static str,
from_teal_700: &'static str,
from_teal_800: &'static str,
from_teal_900: &'static str,
from_transparent: &'static str,
from_violet_100: &'static str,
from_violet_200: &'static str,
from_violet_300: &'static str,
from_violet_400: &'static str,
from_violet_50: &'static str,
from_violet_500: &'static str,
from_violet_600: &'static str,
from_violet_700: &'static str,
from_violet_800: &'static str,
from_violet_900: &'static str,
from_white: &'static str,
from_yellow_100: &'static str,
from_yellow_200: &'static str,
from_yellow_300: &'static str,
from_yellow_400: &'static str,
from_yellow_50: &'static str,
from_yellow_500: &'static str,
from_yellow_600: &'static str,
from_yellow_700: &'static str,
from_yellow_800: &'static str,
from_yellow_900: &'static str,
from_zinc_100: &'static str,
from_zinc_200: &'static str,
from_zinc_300: &'static str,
from_zinc_400: &'static str,
from_zinc_50: &'static str,
from_zinc_500: &'static str,
from_zinc_600: &'static str,
from_zinc_700: &'static str,
from_zinc_800: &'static str,
from_zinc_900: &'static str,
to_amber_100: &'static str,
to_amber_200: &'static str,
to_amber_300: &'static str,
to_amber_400: &'static str,
to_amber_50: &'static str,
to_amber_500: &'static str,
to_amber_600: &'static str,
to_amber_700: &'static str,
to_amber_800: &'static str,
to_amber_900: &'static str,
to_black: &'static str,
to_blue_100: &'static str,
to_blue_200: &'static str,
to_blue_300: &'static str,
to_blue_400: &'static str,
to_blue_50: &'static str,
to_blue_500: &'static str,
to_blue_600: &'static str,
to_blue_700: &'static str,
to_blue_800: &'static str,
to_blue_900: &'static str,
to_current: &'static str,
to_cyan_100: &'static str,
to_cyan_200: &'static str,
to_cyan_300: &'static str,
to_cyan_400: &'static str,
to_cyan_50: &'static str,
to_cyan_500: &'static str,
to_cyan_600: &'static str,
to_cyan_700: &'static str,
to_cyan_800: &'static str,
to_cyan_900: &'static str,
to_emerald_100: &'static str,
to_emerald_200: &'static str,
to_emerald_300: &'static str,
to_emerald_400: &'static str,
to_emerald_50: &'static str,
to_emerald_500: &'static str,
to_emerald_600: &'static str,
to_emerald_700: &'static str,
to_emerald_800: &'static str,
to_emerald_900: &'static str,
to_fuchsia_100: &'static str,
to_fuchsia_200: &'static str,
to_fuchsia_300: &'static str,
to_fuchsia_400: &'static str,
to_fuchsia_50: &'static str,
to_fuchsia_500: &'static str,
to_fuchsia_600: &'static str,
to_fuchsia_700: &'static str,
to_fuchsia_800: &'static str,
to_fuchsia_900: &'static str,
to_gray_100: &'static str,
to_gray_200: &'static str,
to_gray_300: &'static str,
to_gray_400: &'static str,
to_gray_50: &'static str,
to_gray_500: &'static str,
to_gray_600: &'static str,
to_gray_700: &'static str,
to_gray_800: &'static str,
to_gray_900: &'static str,
to_green_100: &'static str,
to_green_200: &'static str,
to_green_300: &'static str,
to_green_400: &'static str,
to_green_50: &'static str,
to_green_500: &'static str,
to_green_600: &'static str,
to_green_700: &'static str,
to_green_800: &'static str,
to_green_900: &'static str,
to_indigo_100: &'static str,
to_indigo_200: &'static str,
to_indigo_300: &'static str,
to_indigo_400: &'static str,
to_indigo_50: &'static str,
to_indigo_500: &'static str,
to_indigo_600: &'static str,
to_indigo_700: &'static str,
to_indigo_800: &'static str,
to_indigo_900: &'static str,
to_inherit: &'static str,
to_lime_100: &'static str,
to_lime_200: &'static str,
to_lime_300: &'static str,
to_lime_400: &'static str,
to_lime_50: &'static str,
to_lime_500: &'static str,
to_lime_600: &'static str,
to_lime_700: &'static str,
to_lime_800: &'static str,
to_lime_900: &'static str,
to_neutral_100: &'static str,
to_neutral_200: &'static str,
to_neutral_300: &'static str,
to_neutral_400: &'static str,
to_neutral_50: &'static str,
to_neutral_500: &'static str,
to_neutral_600: &'static str,
to_neutral_700: &'static str,
to_neutral_800: &'static str,
to_neutral_900: &'static str,
to_orange_100: &'static str,
to_orange_200: &'static str,
to_orange_300: &'static str,
to_orange_400: &'static str,
to_orange_50: &'static str,
to_orange_500: &'static str,
to_orange_600: &'static str,
to_orange_700: &'static str,
to_orange_800: &'static str,
to_orange_900: &'static str,
to_pink_100: &'static str,
to_pink_200: &'static str,
to_pink_300: &'static str,
to_pink_400: &'static str,
to_pink_50: &'static str,
to_pink_500: &'static str,
to_pink_600: &'static str,
to_pink_700: &'static str,
to_pink_800: &'static str,
to_pink_900: &'static str,
to_purple_100: &'static str,
to_purple_200: &'static str,
to_purple_300: &'static str,
to_purple_400: &'static str,
to_purple_50: &'static str,
to_purple_500: &'static str,
to_purple_600: &'static str,
to_purple_700: &'static str,
to_purple_800: &'static str,
to_purple_900: &'static str,
to_red_100: &'static str,
to_red_200: &'static str,
to_red_300: &'static str,
to_red_400: &'static str,
to_red_50: &'static str,
to_red_500: &'static str,
to_red_600: &'static str,
to_red_700: &'static str,
to_red_800: &'static str,
to_red_900: &'static str,
to_rose_100: &'static str,
to_rose_200: &'static str,
to_rose_300: &'static str,
to_rose_400: &'static str,
to_rose_50: &'static str,
to_rose_500: &'static str,
to_rose_600: &'static str,
to_rose_700: &'static str,
to_rose_800: &'static str,
to_rose_900: &'static str,
to_sky_100: &'static str,
to_sky_200: &'static str,
to_sky_300: &'static str,
to_sky_400: &'static str,
to_sky_50: &'static str,
to_sky_500: &'static str,
to_sky_600: &'static str,
to_sky_700: &'static str,
to_sky_800: &'static str,
to_sky_900: &'static str,
to_slate_100: &'static str,
to_slate_200: &'static str,
to_slate_300: &'static str,
to_slate_400: &'static str,
to_slate_50: &'static str,
to_slate_500: &'static str,
to_slate_600: &'static str,
to_slate_700: &'static str,
to_slate_800: &'static str,
to_slate_900: &'static str,
to_stone_100: &'static str,
to_stone_200: &'static str,
to_stone_300: &'static str,
to_stone_400: &'static str,
to_stone_50: &'static str,
to_stone_500: &'static str,
to_stone_600: &'static str,
to_stone_700: &'static str,
to_stone_800: &'static str,
to_stone_900: &'static str,
to_teal_100: &'static str,
to_teal_200: &'static str,
to_teal_300: &'static str,
to_teal_400: &'static str,
to_teal_50: &'static str,
to_teal_500: &'static str,
to_teal_600: &'static str,
to_teal_700: &'static str,
to_teal_800: &'static str,
to_teal_900: &'static str,
to_transparent: &'static str,
to_violet_100: &'static str,
to_violet_200: &'static str,
to_violet_300: &'static str,
to_violet_400: &'static str,
to_violet_50: &'static str,
to_violet_500: &'static str,
to_violet_600: &'static str,
to_violet_700: &'static str,
to_violet_800: &'static str,
to_violet_900: &'static str,
to_white: &'static str,
to_yellow_100: &'static str,
to_yellow_200: &'static str,
to_yellow_300: &'static str,
to_yellow_400: &'static str,
to_yellow_50: &'static str,
to_yellow_500: &'static str,
to_yellow_600: &'static str,
to_yellow_700: &'static str,
to_yellow_800: &'static str,
to_yellow_900: &'static str,
to_zinc_100: &'static str,
to_zinc_200: &'static str,
to_zinc_300: &'static str,
to_zinc_400: &'static str,
to_zinc_50: &'static str,
to_zinc_500: &'static str,
to_zinc_600: &'static str,
to_zinc_700: &'static str,
to_zinc_800: &'static str,
to_zinc_900: &'static str,
via_amber_100: &'static str,
via_amber_200: &'static str,
via_amber_300: &'static str,
via_amber_400: &'static str,
via_amber_50: &'static str,
via_amber_500: &'static str,
via_amber_600: &'static str,
via_amber_700: &'static str,
via_amber_800: &'static str,
via_amber_900: &'static str,
via_black: &'static str,
via_blue_100: &'static str,
via_blue_200: &'static str,
via_blue_300: &'static str,
via_blue_400: &'static str,
via_blue_50: &'static str,
via_blue_500: &'static str,
via_blue_600: &'static str,
via_blue_700: &'static str,
via_blue_800: &'static str,
via_blue_900: &'static str,
via_current: &'static str,
via_cyan_100: &'static str,
via_cyan_200: &'static str,
via_cyan_300: &'static str,
via_cyan_400: &'static str,
via_cyan_50: &'static str,
via_cyan_500: &'static str,
via_cyan_600: &'static str,
via_cyan_700: &'static str,
via_cyan_800: &'static str,
via_cyan_900: &'static str,
via_emerald_100: &'static str,
via_emerald_200: &'static str,
via_emerald_300: &'static str,
via_emerald_400: &'static str,
via_emerald_50: &'static str,
via_emerald_500: &'static str,
via_emerald_600: &'static str,
via_emerald_700: &'static str,
via_emerald_800: &'static str,
via_emerald_900: &'static str,
via_fuchsia_100: &'static str,
via_fuchsia_200: &'static str,
via_fuchsia_300: &'static str,
via_fuchsia_400: &'static str,
via_fuchsia_50: &'static str,
via_fuchsia_500: &'static str,
via_fuchsia_600: &'static str,
via_fuchsia_700: &'static str,
via_fuchsia_800: &'static str,
via_fuchsia_900: &'static str,
via_gray_100: &'static str,
via_gray_200: &'static str,
via_gray_300: &'static str,
via_gray_400: &'static str,
via_gray_50: &'static str,
via_gray_500: &'static str,
via_gray_600: &'static str,
via_gray_700: &'static str,
via_gray_800: &'static str,
via_gray_900: &'static str,
via_green_100: &'static str,
via_green_200: &'static str,
via_green_300: &'static str,
via_green_400: &'static str,
via_green_50: &'static str,
via_green_500: &'static str,
via_green_600: &'static str,
via_green_700: &'static str,
via_green_800: &'static str,
via_green_900: &'static str,
via_indigo_100: &'static str,
via_indigo_200: &'static str,
via_indigo_300: &'static str,
via_indigo_400: &'static str,
via_indigo_50: &'static str,
via_indigo_500: &'static str,
via_indigo_600: &'static str,
via_indigo_700: &'static str,
via_indigo_800: &'static str,
via_indigo_900: &'static str,
via_inherit: &'static str,
via_lime_100: &'static str,
via_lime_200: &'static str,
via_lime_300: &'static str,
via_lime_400: &'static str,
via_lime_50: &'static str,
via_lime_500: &'static str,
via_lime_600: &'static str,
via_lime_700: &'static str,
via_lime_800: &'static str,
via_lime_900: &'static str,
via_neutral_100: &'static str,
via_neutral_200: &'static str,
via_neutral_300: &'static str,
via_neutral_400: &'static str,
via_neutral_50: &'static str,
via_neutral_500: &'static str,
via_neutral_600: &'static str,
via_neutral_700: &'static str,
via_neutral_800: &'static str,
via_neutral_900: &'static str,
via_orange_100: &'static str,
via_orange_200: &'static str,
via_orange_300: &'static str,
via_orange_400: &'static str,
via_orange_50: &'static str,
via_orange_500: &'static str,
via_orange_600: &'static str,
via_orange_700: &'static str,
via_orange_800: &'static str,
via_orange_900: &'static str,
via_pink_100: &'static str,
via_pink_200: &'static str,
via_pink_300: &'static str,
via_pink_400: &'static str,
via_pink_50: &'static str,
via_pink_500: &'static str,
via_pink_600: &'static str,
via_pink_700: &'static str,
via_pink_800: &'static str,
via_pink_900: &'static str,
via_purple_100: &'static str,
via_purple_200: &'static str,
via_purple_300: &'static str,
via_purple_400: &'static str,
via_purple_50: &'static str,
via_purple_500: &'static str,
via_purple_600: &'static str,
via_purple_700: &'static str,
via_purple_800: &'static str,
via_purple_900: &'static str,
via_red_100: &'static str,
via_red_200: &'static str,
via_red_300: &'static str,
via_red_400: &'static str,
via_red_50: &'static str,
via_red_500: &'static str,
via_red_600: &'static str,
via_red_700: &'static str,
via_red_800: &'static str,
via_red_900: &'static str,
via_rose_100: &'static str,
via_rose_200: &'static str,
via_rose_300: &'static str,
via_rose_400: &'static str,
via_rose_50: &'static str,
via_rose_500: &'static str,
via_rose_600: &'static str,
via_rose_700: &'static str,
via_rose_800: &'static str,
via_rose_900: &'static str,
via_sky_100: &'static str,
via_sky_200: &'static str,
via_sky_300: &'static str,
via_sky_400: &'static str,
via_sky_50: &'static str,
via_sky_500: &'static str,
via_sky_600: &'static str,
via_sky_700: &'static str,
via_sky_800: &'static str,
via_sky_900: &'static str,
via_slate_100: &'static str,
via_slate_200: &'static str,
via_slate_300: &'static str,
via_slate_400: &'static str,
via_slate_50: &'static str,
via_slate_500: &'static str,
via_slate_600: &'static str,
via_slate_700: &'static str,
via_slate_800: &'static str,
via_slate_900: &'static str,
via_stone_100: &'static str,
via_stone_200: &'static str,
via_stone_300: &'static str,
via_stone_400: &'static str,
via_stone_50: &'static str,
via_stone_500: &'static str,
via_stone_600: &'static str,
via_stone_700: &'static str,
via_stone_800: &'static str,
via_stone_900: &'static str,
via_teal_100: &'static str,
via_teal_200: &'static str,
via_teal_300: &'static str,
via_teal_400: &'static str,
via_teal_50: &'static str,
via_teal_500: &'static str,
via_teal_600: &'static str,
via_teal_700: &'static str,
via_teal_800: &'static str,
via_teal_900: &'static str,
via_transparent: &'static str,
via_violet_100: &'static str,
via_violet_200: &'static str,
via_violet_300: &'static str,
via_violet_400: &'static str,
via_violet_50: &'static str,
via_violet_500: &'static str,
via_violet_600: &'static str,
via_violet_700: &'static str,
via_violet_800: &'static str,
via_violet_900: &'static str,
via_white: &'static str,
via_yellow_100: &'static str,
via_yellow_200: &'static str,
via_yellow_300: &'static str,
via_yellow_400: &'static str,
via_yellow_50: &'static str,
via_yellow_500: &'static str,
via_yellow_600: &'static str,
via_yellow_700: &'static str,
via_yellow_800: &'static str,
via_yellow_900: &'static str,
via_zinc_100: &'static str,
via_zinc_200: &'static str,
via_zinc_300: &'static str,
via_zinc_400: &'static str,
via_zinc_50: &'static str,
via_zinc_500: &'static str,
via_zinc_600: &'static str,
via_zinc_700: &'static str,
via_zinc_800: &'static str,
via_zinc_900: &'static str,
}
pub struct Borders {
border: &'static str,
border_0: &'static str,
border_2: &'static str,
border_4: &'static str,
border_8: &'static str,
border_amber_100: &'static str,
border_amber_200: &'static str,
border_amber_300: &'static str,
border_amber_400: &'static str,
border_amber_50: &'static str,
border_amber_500: &'static str,
border_amber_600: &'static str,
border_amber_700: &'static str,
border_amber_800: &'static str,
border_amber_900: &'static str,
border_b: &'static str,
border_b_0: &'static str,
border_b_2: &'static str,
border_b_4: &'static str,
border_b_8: &'static str,
border_b_amber_100: &'static str,
border_b_amber_200: &'static str,
border_b_amber_300: &'static str,
border_b_amber_400: &'static str,
border_b_amber_50: &'static str,
border_b_amber_500: &'static str,
border_b_amber_600: &'static str,
border_b_amber_700: &'static str,
border_b_amber_800: &'static str,
border_b_amber_900: &'static str,
border_b_black: &'static str,
border_b_blue_100: &'static str,
border_b_blue_200: &'static str,
border_b_blue_300: &'static str,
border_b_blue_400: &'static str,
border_b_blue_50: &'static str,
border_b_blue_500: &'static str,
border_b_blue_600: &'static str,
border_b_blue_700: &'static str,
border_b_blue_800: &'static str,
border_b_blue_900: &'static str,
border_b_current: &'static str,
border_b_cyan_100: &'static str,
border_b_cyan_200: &'static str,
border_b_cyan_300: &'static str,
border_b_cyan_400: &'static str,
border_b_cyan_50: &'static str,
border_b_cyan_500: &'static str,
border_b_cyan_600: &'static str,
border_b_cyan_700: &'static str,
border_b_cyan_800: &'static str,
border_b_cyan_900: &'static str,
border_b_emerald_100: &'static str,
border_b_emerald_200: &'static str,
border_b_emerald_300: &'static str,
border_b_emerald_400: &'static str,
border_b_emerald_50: &'static str,
border_b_emerald_500: &'static str,
border_b_emerald_600: &'static str,
border_b_emerald_700: &'static str,
border_b_emerald_800: &'static str,
border_b_emerald_900: &'static str,
border_b_fuchsia_100: &'static str,
border_b_fuchsia_200: &'static str,
border_b_fuchsia_300: &'static str,
border_b_fuchsia_400: &'static str,
border_b_fuchsia_50: &'static str,
border_b_fuchsia_500: &'static str,
border_b_fuchsia_600: &'static str,
border_b_fuchsia_700: &'static str,
border_b_fuchsia_800: &'static str,
border_b_fuchsia_900: &'static str,
border_b_gray_100: &'static str,
border_b_gray_200: &'static str,
border_b_gray_300: &'static str,
border_b_gray_400: &'static str,
border_b_gray_50: &'static str,
border_b_gray_500: &'static str,
border_b_gray_600: &'static str,
border_b_gray_700: &'static str,
border_b_gray_800: &'static str,
border_b_gray_900: &'static str,
border_b_green_100: &'static str,
border_b_green_200: &'static str,
border_b_green_300: &'static str,
border_b_green_400: &'static str,
border_b_green_50: &'static str,
border_b_green_500: &'static str,
border_b_green_600: &'static str,
border_b_green_700: &'static str,
border_b_green_800: &'static str,
border_b_green_900: &'static str,
border_b_indigo_100: &'static str,
border_b_indigo_200: &'static str,
border_b_indigo_300: &'static str,
border_b_indigo_400: &'static str,
border_b_indigo_50: &'static str,
border_b_indigo_500: &'static str,
border_b_indigo_600: &'static str,
border_b_indigo_700: &'static str,
border_b_indigo_800: &'static str,
border_b_indigo_900: &'static str,
border_b_inherit: &'static str,
border_b_lime_100: &'static str,
border_b_lime_200: &'static str,
border_b_lime_300: &'static str,
border_b_lime_400: &'static str,
border_b_lime_50: &'static str,
border_b_lime_500: &'static str,
border_b_lime_600: &'static str,
border_b_lime_700: &'static str,
border_b_lime_800: &'static str,
border_b_lime_900: &'static str,
border_b_neutral_100: &'static str,
border_b_neutral_200: &'static str,
border_b_neutral_300: &'static str,
border_b_neutral_400: &'static str,
border_b_neutral_50: &'static str,
border_b_neutral_500: &'static str,
border_b_neutral_600: &'static str,
border_b_neutral_700: &'static str,
border_b_neutral_800: &'static str,
border_b_neutral_900: &'static str,
border_b_orange_100: &'static str,
border_b_orange_200: &'static str,
border_b_orange_300: &'static str,
border_b_orange_400: &'static str,
border_b_orange_50: &'static str,
border_b_orange_500: &'static str,
border_b_orange_600: &'static str,
border_b_orange_700: &'static str,
border_b_orange_800: &'static str,
border_b_orange_900: &'static str,
border_b_pink_100: &'static str,
border_b_pink_200: &'static str,
border_b_pink_300: &'static str,
border_b_pink_400: &'static str,
border_b_pink_50: &'static str,
border_b_pink_500: &'static str,
border_b_pink_600: &'static str,
border_b_pink_700: &'static str,
border_b_pink_800: &'static str,
border_b_pink_900: &'static str,
border_b_purple_100: &'static str,
border_b_purple_200: &'static str,
border_b_purple_300: &'static str,
border_b_purple_400: &'static str,
border_b_purple_50: &'static str,
border_b_purple_500: &'static str,
border_b_purple_600: &'static str,
border_b_purple_700: &'static str,
border_b_purple_800: &'static str,
border_b_purple_900: &'static str,
border_b_red_100: &'static str,
border_b_red_200: &'static str,
border_b_red_300: &'static str,
border_b_red_400: &'static str,
border_b_red_50: &'static str,
border_b_red_500: &'static str,
border_b_red_600: &'static str,
border_b_red_700: &'static str,
border_b_red_800: &'static str,
border_b_red_900: &'static str,
border_b_rose_100: &'static str,
border_b_rose_200: &'static str,
border_b_rose_300: &'static str,
border_b_rose_400: &'static str,
border_b_rose_50: &'static str,
border_b_rose_500: &'static str,
border_b_rose_600: &'static str,
border_b_rose_700: &'static str,
border_b_rose_800: &'static str,
border_b_rose_900: &'static str,
border_b_sky_100: &'static str,
border_b_sky_200: &'static str,
border_b_sky_300: &'static str,
border_b_sky_400: &'static str,
border_b_sky_50: &'static str,
border_b_sky_500: &'static str,
border_b_sky_600: &'static str,
border_b_sky_700: &'static str,
border_b_sky_800: &'static str,
border_b_sky_900: &'static str,
border_b_slate_100: &'static str,
border_b_slate_200: &'static str,
border_b_slate_300: &'static str,
border_b_slate_400: &'static str,
border_b_slate_50: &'static str,
border_b_slate_500: &'static str,
border_b_slate_600: &'static str,
border_b_slate_700: &'static str,
border_b_slate_800: &'static str,
border_b_slate_900: &'static str,
border_b_stone_100: &'static str,
border_b_stone_200: &'static str,
border_b_stone_300: &'static str,
border_b_stone_400: &'static str,
border_b_stone_50: &'static str,
border_b_stone_500: &'static str,
border_b_stone_600: &'static str,
border_b_stone_700: &'static str,
border_b_stone_800: &'static str,
border_b_stone_900: &'static str,
border_b_teal_100: &'static str,
border_b_teal_200: &'static str,
border_b_teal_300: &'static str,
border_b_teal_400: &'static str,
border_b_teal_50: &'static str,
border_b_teal_500: &'static str,
border_b_teal_600: &'static str,
border_b_teal_700: &'static str,
border_b_teal_800: &'static str,
border_b_teal_900: &'static str,
border_b_transparent: &'static str,
border_b_violet_100: &'static str,
border_b_violet_200: &'static str,
border_b_violet_300: &'static str,
border_b_violet_400: &'static str,
border_b_violet_50: &'static str,
border_b_violet_500: &'static str,
border_b_violet_600: &'static str,
border_b_violet_700: &'static str,
border_b_violet_800: &'static str,
border_b_violet_900: &'static str,
border_b_white: &'static str,
border_b_yellow_100: &'static str,
border_b_yellow_200: &'static str,
border_b_yellow_300: &'static str,
border_b_yellow_400: &'static str,
border_b_yellow_50: &'static str,
border_b_yellow_500: &'static str,
border_b_yellow_600: &'static str,
border_b_yellow_700: &'static str,
border_b_yellow_800: &'static str,
border_b_yellow_900: &'static str,
border_b_zinc_100: &'static str,
border_b_zinc_200: &'static str,
border_b_zinc_300: &'static str,
border_b_zinc_400: &'static str,
border_b_zinc_50: &'static str,
border_b_zinc_500: &'static str,
border_b_zinc_600: &'static str,
border_b_zinc_700: &'static str,
border_b_zinc_800: &'static str,
border_b_zinc_900: &'static str,
border_black: &'static str,
border_blue_100: &'static str,
border_blue_200: &'static str,
border_blue_300: &'static str,
border_blue_400: &'static str,
border_blue_50: &'static str,
border_blue_500: &'static str,
border_blue_600: &'static str,
border_blue_700: &'static str,
border_blue_800: &'static str,
border_blue_900: &'static str,
border_current: &'static str,
border_cyan_100: &'static str,
border_cyan_200: &'static str,
border_cyan_300: &'static str,
border_cyan_400: &'static str,
border_cyan_50: &'static str,
border_cyan_500: &'static str,
border_cyan_600: &'static str,
border_cyan_700: &'static str,
border_cyan_800: &'static str,
border_cyan_900: &'static str,
border_dashed: &'static str,
border_dotted: &'static str,
border_double: &'static str,
border_emerald_100: &'static str,
border_emerald_200: &'static str,
border_emerald_300: &'static str,
border_emerald_400: &'static str,
border_emerald_50: &'static str,
border_emerald_500: &'static str,
border_emerald_600: &'static str,
border_emerald_700: &'static str,
border_emerald_800: &'static str,
border_emerald_900: &'static str,
border_fuchsia_100: &'static str,
border_fuchsia_200: &'static str,
border_fuchsia_300: &'static str,
border_fuchsia_400: &'static str,
border_fuchsia_50: &'static str,
border_fuchsia_500: &'static str,
border_fuchsia_600: &'static str,
border_fuchsia_700: &'static str,
border_fuchsia_800: &'static str,
border_fuchsia_900: &'static str,
border_gray_100: &'static str,
border_gray_200: &'static str,
border_gray_300: &'static str,
border_gray_400: &'static str,
border_gray_50: &'static str,
border_gray_500: &'static str,
border_gray_600: &'static str,
border_gray_700: &'static str,
border_gray_800: &'static str,
border_gray_900: &'static str,
border_green_100: &'static str,
border_green_200: &'static str,
border_green_300: &'static str,
border_green_400: &'static str,
border_green_50: &'static str,
border_green_500: &'static str,
border_green_600: &'static str,
border_green_700: &'static str,
border_green_800: &'static str,
border_green_900: &'static str,
border_hidden: &'static str,
border_indigo_100: &'static str,
border_indigo_200: &'static str,
border_indigo_300: &'static str,
border_indigo_400: &'static str,
border_indigo_50: &'static str,
border_indigo_500: &'static str,
border_indigo_600: &'static str,
border_indigo_700: &'static str,
border_indigo_800: &'static str,
border_indigo_900: &'static str,
border_inherit: &'static str,
border_l: &'static str,
border_l_0: &'static str,
border_l_2: &'static str,
border_l_4: &'static str,
border_l_8: &'static str,
border_l_amber_100: &'static str,
border_l_amber_200: &'static str,
border_l_amber_300: &'static str,
border_l_amber_400: &'static str,
border_l_amber_50: &'static str,
border_l_amber_500: &'static str,
border_l_amber_600: &'static str,
border_l_amber_700: &'static str,
border_l_amber_800: &'static str,
border_l_amber_900: &'static str,
border_l_black: &'static str,
border_l_blue_100: &'static str,
border_l_blue_200: &'static str,
border_l_blue_300: &'static str,
border_l_blue_400: &'static str,
border_l_blue_50: &'static str,
border_l_blue_500: &'static str,
border_l_blue_600: &'static str,
border_l_blue_700: &'static str,
border_l_blue_800: &'static str,
border_l_blue_900: &'static str,
border_l_current: &'static str,
border_l_cyan_100: &'static str,
border_l_cyan_200: &'static str,
border_l_cyan_300: &'static str,
border_l_cyan_400: &'static str,
border_l_cyan_50: &'static str,
border_l_cyan_500: &'static str,
border_l_cyan_600: &'static str,
border_l_cyan_700: &'static str,
border_l_cyan_800: &'static str,
border_l_cyan_900: &'static str,
border_l_emerald_100: &'static str,
border_l_emerald_200: &'static str,
border_l_emerald_300: &'static str,
border_l_emerald_400: &'static str,
border_l_emerald_50: &'static str,
border_l_emerald_500: &'static str,
border_l_emerald_600: &'static str,
border_l_emerald_700: &'static str,
border_l_emerald_800: &'static str,
border_l_emerald_900: &'static str,
border_l_fuchsia_100: &'static str,
border_l_fuchsia_200: &'static str,
border_l_fuchsia_300: &'static str,
border_l_fuchsia_400: &'static str,
border_l_fuchsia_50: &'static str,
border_l_fuchsia_500: &'static str,
border_l_fuchsia_600: &'static str,
border_l_fuchsia_700: &'static str,
border_l_fuchsia_800: &'static str,
border_l_fuchsia_900: &'static str,
border_l_gray_100: &'static str,
border_l_gray_200: &'static str,
border_l_gray_300: &'static str,
border_l_gray_400: &'static str,
border_l_gray_50: &'static str,
border_l_gray_500: &'static str,
border_l_gray_600: &'static str,
border_l_gray_700: &'static str,
border_l_gray_800: &'static str,
border_l_gray_900: &'static str,
border_l_green_100: &'static str,
border_l_green_200: &'static str,
border_l_green_300: &'static str,
border_l_green_400: &'static str,
border_l_green_50: &'static str,
border_l_green_500: &'static str,
border_l_green_600: &'static str,
border_l_green_700: &'static str,
border_l_green_800: &'static str,
border_l_green_900: &'static str,
border_l_indigo_100: &'static str,
border_l_indigo_200: &'static str,
border_l_indigo_300: &'static str,
border_l_indigo_400: &'static str,
border_l_indigo_50: &'static str,
border_l_indigo_500: &'static str,
border_l_indigo_600: &'static str,
border_l_indigo_700: &'static str,
border_l_indigo_800: &'static str,
border_l_indigo_900: &'static str,
border_l_inherit: &'static str,
border_l_lime_100: &'static str,
border_l_lime_200: &'static str,
border_l_lime_300: &'static str,
border_l_lime_400: &'static str,
border_l_lime_50: &'static str,
border_l_lime_500: &'static str,
border_l_lime_600: &'static str,
border_l_lime_700: &'static str,
border_l_lime_800: &'static str,
border_l_lime_900: &'static str,
border_l_neutral_100: &'static str,
border_l_neutral_200: &'static str,
border_l_neutral_300: &'static str,
border_l_neutral_400: &'static str,
border_l_neutral_50: &'static str,
border_l_neutral_500: &'static str,
border_l_neutral_600: &'static str,
border_l_neutral_700: &'static str,
border_l_neutral_800: &'static str,
border_l_neutral_900: &'static str,
border_l_orange_100: &'static str,
border_l_orange_200: &'static str,
border_l_orange_300: &'static str,
border_l_orange_400: &'static str,
border_l_orange_50: &'static str,
border_l_orange_500: &'static str,
border_l_orange_600: &'static str,
border_l_orange_700: &'static str,
border_l_orange_800: &'static str,
border_l_orange_900: &'static str,
border_l_pink_100: &'static str,
border_l_pink_200: &'static str,
border_l_pink_300: &'static str,
border_l_pink_400: &'static str,
border_l_pink_50: &'static str,
border_l_pink_500: &'static str,
border_l_pink_600: &'static str,
border_l_pink_700: &'static str,
border_l_pink_800: &'static str,
border_l_pink_900: &'static str,
border_l_purple_100: &'static str,
border_l_purple_200: &'static str,
border_l_purple_300: &'static str,
border_l_purple_400: &'static str,
border_l_purple_50: &'static str,
border_l_purple_500: &'static str,
border_l_purple_600: &'static str,
border_l_purple_700: &'static str,
border_l_purple_800: &'static str,
border_l_purple_900: &'static str,
border_l_red_100: &'static str,
border_l_red_200: &'static str,
border_l_red_300: &'static str,
border_l_red_400: &'static str,
border_l_red_50: &'static str,
border_l_red_500: &'static str,
border_l_red_600: &'static str,
border_l_red_700: &'static str,
border_l_red_800: &'static str,
border_l_red_900: &'static str,
border_l_rose_100: &'static str,
border_l_rose_200: &'static str,
border_l_rose_300: &'static str,
border_l_rose_400: &'static str,
border_l_rose_50: &'static str,
border_l_rose_500: &'static str,
border_l_rose_600: &'static str,
border_l_rose_700: &'static str,
border_l_rose_800: &'static str,
border_l_rose_900: &'static str,
border_l_sky_100: &'static str,
border_l_sky_200: &'static str,
border_l_sky_300: &'static str,
border_l_sky_400: &'static str,
border_l_sky_50: &'static str,
border_l_sky_500: &'static str,
border_l_sky_600: &'static str,
border_l_sky_700: &'static str,
border_l_sky_800: &'static str,
border_l_sky_900: &'static str,
border_l_slate_100: &'static str,
border_l_slate_200: &'static str,
border_l_slate_300: &'static str,
border_l_slate_400: &'static str,
border_l_slate_50: &'static str,
border_l_slate_500: &'static str,
border_l_slate_600: &'static str,
border_l_slate_700: &'static str,
border_l_slate_800: &'static str,
border_l_slate_900: &'static str,
border_l_stone_100: &'static str,
border_l_stone_200: &'static str,
border_l_stone_300: &'static str,
border_l_stone_400: &'static str,
border_l_stone_50: &'static str,
border_l_stone_500: &'static str,
border_l_stone_600: &'static str,
border_l_stone_700: &'static str,
border_l_stone_800: &'static str,
border_l_stone_900: &'static str,
border_l_teal_100: &'static str,
border_l_teal_200: &'static str,
border_l_teal_300: &'static str,
border_l_teal_400: &'static str,
border_l_teal_50: &'static str,
border_l_teal_500: &'static str,
border_l_teal_600: &'static str,
border_l_teal_700: &'static str,
border_l_teal_800: &'static str,
border_l_teal_900: &'static str,
border_l_transparent: &'static str,
border_l_violet_100: &'static str,
border_l_violet_200: &'static str,
border_l_violet_300: &'static str,
border_l_violet_400: &'static str,
border_l_violet_50: &'static str,
border_l_violet_500: &'static str,
border_l_violet_600: &'static str,
border_l_violet_700: &'static str,
border_l_violet_800: &'static str,
border_l_violet_900: &'static str,
border_l_white: &'static str,
border_l_yellow_100: &'static str,
border_l_yellow_200: &'static str,
border_l_yellow_300: &'static str,
border_l_yellow_400: &'static str,
border_l_yellow_50: &'static str,
border_l_yellow_500: &'static str,
border_l_yellow_600: &'static str,
border_l_yellow_700: &'static str,
border_l_yellow_800: &'static str,
border_l_yellow_900: &'static str,
border_l_zinc_100: &'static str,
border_l_zinc_200: &'static str,
border_l_zinc_300: &'static str,
border_l_zinc_400: &'static str,
border_l_zinc_50: &'static str,
border_l_zinc_500: &'static str,
border_l_zinc_600: &'static str,
border_l_zinc_700: &'static str,
border_l_zinc_800: &'static str,
border_l_zinc_900: &'static str,
border_lime_100: &'static str,
border_lime_200: &'static str,
border_lime_300: &'static str,
border_lime_400: &'static str,
border_lime_50: &'static str,
border_lime_500: &'static str,
border_lime_600: &'static str,
border_lime_700: &'static str,
border_lime_800: &'static str,
border_lime_900: &'static str,
border_neutral_100: &'static str,
border_neutral_200: &'static str,
border_neutral_300: &'static str,
border_neutral_400: &'static str,
border_neutral_50: &'static str,
border_neutral_500: &'static str,
border_neutral_600: &'static str,
border_neutral_700: &'static str,
border_neutral_800: &'static str,
border_neutral_900: &'static str,
border_none: &'static str,
border_opacity_0: &'static str,
border_opacity_10: &'static str,
border_opacity_100: &'static str,
border_opacity_20: &'static str,
border_opacity_25: &'static str,
border_opacity_30: &'static str,
border_opacity_40: &'static str,
border_opacity_5: &'static str,
border_opacity_50: &'static str,
border_opacity_60: &'static str,
border_opacity_70: &'static str,
border_opacity_75: &'static str,
border_opacity_80: &'static str,
border_opacity_90: &'static str,
border_opacity_95: &'static str,
border_orange_100: &'static str,
border_orange_200: &'static str,
border_orange_300: &'static str,
border_orange_400: &'static str,
border_orange_50: &'static str,
border_orange_500: &'static str,
border_orange_600: &'static str,
border_orange_700: &'static str,
border_orange_800: &'static str,
border_orange_900: &'static str,
border_pink_100: &'static str,
border_pink_200: &'static str,
border_pink_300: &'static str,
border_pink_400: &'static str,
border_pink_50: &'static str,
border_pink_500: &'static str,
border_pink_600: &'static str,
border_pink_700: &'static str,
border_pink_800: &'static str,
border_pink_900: &'static str,
border_purple_100: &'static str,
border_purple_200: &'static str,
border_purple_300: &'static str,
border_purple_400: &'static str,
border_purple_50: &'static str,
border_purple_500: &'static str,
border_purple_600: &'static str,
border_purple_700: &'static str,
border_purple_800: &'static str,
border_purple_900: &'static str,
border_r: &'static str,
border_r_0: &'static str,
border_r_2: &'static str,
border_r_4: &'static str,
border_r_8: &'static str,
border_r_amber_100: &'static str,
border_r_amber_200: &'static str,
border_r_amber_300: &'static str,
border_r_amber_400: &'static str,
border_r_amber_50: &'static str,
border_r_amber_500: &'static str,
border_r_amber_600: &'static str,
border_r_amber_700: &'static str,
border_r_amber_800: &'static str,
border_r_amber_900: &'static str,
border_r_black: &'static str,
border_r_blue_100: &'static str,
border_r_blue_200: &'static str,
border_r_blue_300: &'static str,
border_r_blue_400: &'static str,
border_r_blue_50: &'static str,
border_r_blue_500: &'static str,
border_r_blue_600: &'static str,
border_r_blue_700: &'static str,
border_r_blue_800: &'static str,
border_r_blue_900: &'static str,
border_r_current: &'static str,
border_r_cyan_100: &'static str,
border_r_cyan_200: &'static str,
border_r_cyan_300: &'static str,
border_r_cyan_400: &'static str,
border_r_cyan_50: &'static str,
border_r_cyan_500: &'static str,
border_r_cyan_600: &'static str,
border_r_cyan_700: &'static str,
border_r_cyan_800: &'static str,
border_r_cyan_900: &'static str,
border_r_emerald_100: &'static str,
border_r_emerald_200: &'static str,
border_r_emerald_300: &'static str,
border_r_emerald_400: &'static str,
border_r_emerald_50: &'static str,
border_r_emerald_500: &'static str,
border_r_emerald_600: &'static str,
border_r_emerald_700: &'static str,
border_r_emerald_800: &'static str,
border_r_emerald_900: &'static str,
border_r_fuchsia_100: &'static str,
border_r_fuchsia_200: &'static str,
border_r_fuchsia_300: &'static str,
border_r_fuchsia_400: &'static str,
border_r_fuchsia_50: &'static str,
border_r_fuchsia_500: &'static str,
border_r_fuchsia_600: &'static str,
border_r_fuchsia_700: &'static str,
border_r_fuchsia_800: &'static str,
border_r_fuchsia_900: &'static str,
border_r_gray_100: &'static str,
border_r_gray_200: &'static str,
border_r_gray_300: &'static str,
border_r_gray_400: &'static str,
border_r_gray_50: &'static str,
border_r_gray_500: &'static str,
border_r_gray_600: &'static str,
border_r_gray_700: &'static str,
border_r_gray_800: &'static str,
border_r_gray_900: &'static str,
border_r_green_100: &'static str,
border_r_green_200: &'static str,
border_r_green_300: &'static str,
border_r_green_400: &'static str,
border_r_green_50: &'static str,
border_r_green_500: &'static str,
border_r_green_600: &'static str,
border_r_green_700: &'static str,
border_r_green_800: &'static str,
border_r_green_900: &'static str,
border_r_indigo_100: &'static str,
border_r_indigo_200: &'static str,
border_r_indigo_300: &'static str,
border_r_indigo_400: &'static str,
border_r_indigo_50: &'static str,
border_r_indigo_500: &'static str,
border_r_indigo_600: &'static str,
border_r_indigo_700: &'static str,
border_r_indigo_800: &'static str,
border_r_indigo_900: &'static str,
border_r_inherit: &'static str,
border_r_lime_100: &'static str,
border_r_lime_200: &'static str,
border_r_lime_300: &'static str,
border_r_lime_400: &'static str,
border_r_lime_50: &'static str,
border_r_lime_500: &'static str,
border_r_lime_600: &'static str,
border_r_lime_700: &'static str,
border_r_lime_800: &'static str,
border_r_lime_900: &'static str,
border_r_neutral_100: &'static str,
border_r_neutral_200: &'static str,
border_r_neutral_300: &'static str,
border_r_neutral_400: &'static str,
border_r_neutral_50: &'static str,
border_r_neutral_500: &'static str,
border_r_neutral_600: &'static str,
border_r_neutral_700: &'static str,
border_r_neutral_800: &'static str,
border_r_neutral_900: &'static str,
border_r_orange_100: &'static str,
border_r_orange_200: &'static str,
border_r_orange_300: &'static str,
border_r_orange_400: &'static str,
border_r_orange_50: &'static str,
border_r_orange_500: &'static str,
border_r_orange_600: &'static str,
border_r_orange_700: &'static str,
border_r_orange_800: &'static str,
border_r_orange_900: &'static str,
border_r_pink_100: &'static str,
border_r_pink_200: &'static str,
border_r_pink_300: &'static str,
border_r_pink_400: &'static str,
border_r_pink_50: &'static str,
border_r_pink_500: &'static str,
border_r_pink_600: &'static str,
border_r_pink_700: &'static str,
border_r_pink_800: &'static str,
border_r_pink_900: &'static str,
border_r_purple_100: &'static str,
border_r_purple_200: &'static str,
border_r_purple_300: &'static str,
border_r_purple_400: &'static str,
border_r_purple_50: &'static str,
border_r_purple_500: &'static str,
border_r_purple_600: &'static str,
border_r_purple_700: &'static str,
border_r_purple_800: &'static str,
border_r_purple_900: &'static str,
border_r_red_100: &'static str,
border_r_red_200: &'static str,
border_r_red_300: &'static str,
border_r_red_400: &'static str,
border_r_red_50: &'static str,
border_r_red_500: &'static str,
border_r_red_600: &'static str,
border_r_red_700: &'static str,
border_r_red_800: &'static str,
border_r_red_900: &'static str,
border_r_rose_100: &'static str,
border_r_rose_200: &'static str,
border_r_rose_300: &'static str,
border_r_rose_400: &'static str,
border_r_rose_50: &'static str,
border_r_rose_500: &'static str,
border_r_rose_600: &'static str,
border_r_rose_700: &'static str,
border_r_rose_800: &'static str,
border_r_rose_900: &'static str,
border_r_sky_100: &'static str,
border_r_sky_200: &'static str,
border_r_sky_300: &'static str,
border_r_sky_400: &'static str,
border_r_sky_50: &'static str,
border_r_sky_500: &'static str,
border_r_sky_600: &'static str,
border_r_sky_700: &'static str,
border_r_sky_800: &'static str,
border_r_sky_900: &'static str,
border_r_slate_100: &'static str,
border_r_slate_200: &'static str,
border_r_slate_300: &'static str,
border_r_slate_400: &'static str,
border_r_slate_50: &'static str,
border_r_slate_500: &'static str,
border_r_slate_600: &'static str,
border_r_slate_700: &'static str,
border_r_slate_800: &'static str,
border_r_slate_900: &'static str,
border_r_stone_100: &'static str,
border_r_stone_200: &'static str,
border_r_stone_300: &'static str,
border_r_stone_400: &'static str,
border_r_stone_50: &'static str,
border_r_stone_500: &'static str,
border_r_stone_600: &'static str,
border_r_stone_700: &'static str,
border_r_stone_800: &'static str,
border_r_stone_900: &'static str,
border_r_teal_100: &'static str,
border_r_teal_200: &'static str,
border_r_teal_300: &'static str,
border_r_teal_400: &'static str,
border_r_teal_50: &'static str,
border_r_teal_500: &'static str,
border_r_teal_600: &'static str,
border_r_teal_700: &'static str,
border_r_teal_800: &'static str,
border_r_teal_900: &'static str,
border_r_transparent: &'static str,
border_r_violet_100: &'static str,
border_r_violet_200: &'static str,
border_r_violet_300: &'static str,
border_r_violet_400: &'static str,
border_r_violet_50: &'static str,
border_r_violet_500: &'static str,
border_r_violet_600: &'static str,
border_r_violet_700: &'static str,
border_r_violet_800: &'static str,
border_r_violet_900: &'static str,
border_r_white: &'static str,
border_r_yellow_100: &'static str,
border_r_yellow_200: &'static str,
border_r_yellow_300: &'static str,
border_r_yellow_400: &'static str,
border_r_yellow_50: &'static str,
border_r_yellow_500: &'static str,
border_r_yellow_600: &'static str,
border_r_yellow_700: &'static str,
border_r_yellow_800: &'static str,
border_r_yellow_900: &'static str,
border_r_zinc_100: &'static str,
border_r_zinc_200: &'static str,
border_r_zinc_300: &'static str,
border_r_zinc_400: &'static str,
border_r_zinc_50: &'static str,
border_r_zinc_500: &'static str,
border_r_zinc_600: &'static str,
border_r_zinc_700: &'static str,
border_r_zinc_800: &'static str,
border_r_zinc_900: &'static str,
border_red_100: &'static str,
border_red_200: &'static str,
border_red_300: &'static str,
border_red_400: &'static str,
border_red_50: &'static str,
border_red_500: &'static str,
border_red_600: &'static str,
border_red_700: &'static str,
border_red_800: &'static str,
border_red_900: &'static str,
border_rose_100: &'static str,
border_rose_200: &'static str,
border_rose_300: &'static str,
border_rose_400: &'static str,
border_rose_50: &'static str,
border_rose_500: &'static str,
border_rose_600: &'static str,
border_rose_700: &'static str,
border_rose_800: &'static str,
border_rose_900: &'static str,
border_sky_100: &'static str,
border_sky_200: &'static str,
border_sky_300: &'static str,
border_sky_400: &'static str,
border_sky_50: &'static str,
border_sky_500: &'static str,
border_sky_600: &'static str,
border_sky_700: &'static str,
border_sky_800: &'static str,
border_sky_900: &'static str,
border_slate_100: &'static str,
border_slate_200: &'static str,
border_slate_300: &'static str,
border_slate_400: &'static str,
border_slate_50: &'static str,
border_slate_500: &'static str,
border_slate_600: &'static str,
border_slate_700: &'static str,
border_slate_800: &'static str,
border_slate_900: &'static str,
border_solid: &'static str,
border_stone_100: &'static str,
border_stone_200: &'static str,
border_stone_300: &'static str,
border_stone_400: &'static str,
border_stone_50: &'static str,
border_stone_500: &'static str,
border_stone_600: &'static str,
border_stone_700: &'static str,
border_stone_800: &'static str,
border_stone_900: &'static str,
border_t: &'static str,
border_t_0: &'static str,
border_t_2: &'static str,
border_t_4: &'static str,
border_t_8: &'static str,
border_t_amber_100: &'static str,
border_t_amber_200: &'static str,
border_t_amber_300: &'static str,
border_t_amber_400: &'static str,
border_t_amber_50: &'static str,
border_t_amber_500: &'static str,
border_t_amber_600: &'static str,
border_t_amber_700: &'static str,
border_t_amber_800: &'static str,
border_t_amber_900: &'static str,
border_t_black: &'static str,
border_t_blue_100: &'static str,
border_t_blue_200: &'static str,
border_t_blue_300: &'static str,
border_t_blue_400: &'static str,
border_t_blue_50: &'static str,
border_t_blue_500: &'static str,
border_t_blue_600: &'static str,
border_t_blue_700: &'static str,
border_t_blue_800: &'static str,
border_t_blue_900: &'static str,
border_t_current: &'static str,
border_t_cyan_100: &'static str,
border_t_cyan_200: &'static str,
border_t_cyan_300: &'static str,
border_t_cyan_400: &'static str,
border_t_cyan_50: &'static str,
border_t_cyan_500: &'static str,
border_t_cyan_600: &'static str,
border_t_cyan_700: &'static str,
border_t_cyan_800: &'static str,
border_t_cyan_900: &'static str,
border_t_emerald_100: &'static str,
border_t_emerald_200: &'static str,
border_t_emerald_300: &'static str,
border_t_emerald_400: &'static str,
border_t_emerald_50: &'static str,
border_t_emerald_500: &'static str,
border_t_emerald_600: &'static str,
border_t_emerald_700: &'static str,
border_t_emerald_800: &'static str,
border_t_emerald_900: &'static str,
border_t_fuchsia_100: &'static str,
border_t_fuchsia_200: &'static str,
border_t_fuchsia_300: &'static str,
border_t_fuchsia_400: &'static str,
border_t_fuchsia_50: &'static str,
border_t_fuchsia_500: &'static str,
border_t_fuchsia_600: &'static str,
border_t_fuchsia_700: &'static str,
border_t_fuchsia_800: &'static str,
border_t_fuchsia_900: &'static str,
border_t_gray_100: &'static str,
border_t_gray_200: &'static str,
border_t_gray_300: &'static str,
border_t_gray_400: &'static str,
border_t_gray_50: &'static str,
border_t_gray_500: &'static str,
border_t_gray_600: &'static str,
border_t_gray_700: &'static str,
border_t_gray_800: &'static str,
border_t_gray_900: &'static str,
border_t_green_100: &'static str,
border_t_green_200: &'static str,
border_t_green_300: &'static str,
border_t_green_400: &'static str,
border_t_green_50: &'static str,
border_t_green_500: &'static str,
border_t_green_600: &'static str,
border_t_green_700: &'static str,
border_t_green_800: &'static str,
border_t_green_900: &'static str,
border_t_indigo_100: &'static str,
border_t_indigo_200: &'static str,
border_t_indigo_300: &'static str,
border_t_indigo_400: &'static str,
border_t_indigo_50: &'static str,
border_t_indigo_500: &'static str,
border_t_indigo_600: &'static str,
border_t_indigo_700: &'static str,
border_t_indigo_800: &'static str,
border_t_indigo_900: &'static str,
border_t_inherit: &'static str,
border_t_lime_100: &'static str,
border_t_lime_200: &'static str,
border_t_lime_300: &'static str,
border_t_lime_400: &'static str,
border_t_lime_50: &'static str,
border_t_lime_500: &'static str,
border_t_lime_600: &'static str,
border_t_lime_700: &'static str,
border_t_lime_800: &'static str,
border_t_lime_900: &'static str,
border_t_neutral_100: &'static str,
border_t_neutral_200: &'static str,
border_t_neutral_300: &'static str,
border_t_neutral_400: &'static str,
border_t_neutral_50: &'static str,
border_t_neutral_500: &'static str,
border_t_neutral_600: &'static str,
border_t_neutral_700: &'static str,
border_t_neutral_800: &'static str,
border_t_neutral_900: &'static str,
border_t_orange_100: &'static str,
border_t_orange_200: &'static str,
border_t_orange_300: &'static str,
border_t_orange_400: &'static str,
border_t_orange_50: &'static str,
border_t_orange_500: &'static str,
border_t_orange_600: &'static str,
border_t_orange_700: &'static str,
border_t_orange_800: &'static str,
border_t_orange_900: &'static str,
border_t_pink_100: &'static str,
border_t_pink_200: &'static str,
border_t_pink_300: &'static str,
border_t_pink_400: &'static str,
border_t_pink_50: &'static str,
border_t_pink_500: &'static str,
border_t_pink_600: &'static str,
border_t_pink_700: &'static str,
border_t_pink_800: &'static str,
border_t_pink_900: &'static str,
border_t_purple_100: &'static str,
border_t_purple_200: &'static str,
border_t_purple_300: &'static str,
border_t_purple_400: &'static str,
border_t_purple_50: &'static str,
border_t_purple_500: &'static str,
border_t_purple_600: &'static str,
border_t_purple_700: &'static str,
border_t_purple_800: &'static str,
border_t_purple_900: &'static str,
border_t_red_100: &'static str,
border_t_red_200: &'static str,
border_t_red_300: &'static str,
border_t_red_400: &'static str,
border_t_red_50: &'static str,
border_t_red_500: &'static str,
border_t_red_600: &'static str,
border_t_red_700: &'static str,
border_t_red_800: &'static str,
border_t_red_900: &'static str,
border_t_rose_100: &'static str,
border_t_rose_200: &'static str,
border_t_rose_300: &'static str,
border_t_rose_400: &'static str,
border_t_rose_50: &'static str,
border_t_rose_500: &'static str,
border_t_rose_600: &'static str,
border_t_rose_700: &'static str,
border_t_rose_800: &'static str,
border_t_rose_900: &'static str,
border_t_sky_100: &'static str,
border_t_sky_200: &'static str,
border_t_sky_300: &'static str,
border_t_sky_400: &'static str,
border_t_sky_50: &'static str,
border_t_sky_500: &'static str,
border_t_sky_600: &'static str,
border_t_sky_700: &'static str,
border_t_sky_800: &'static str,
border_t_sky_900: &'static str,
border_t_slate_100: &'static str,
border_t_slate_200: &'static str,
border_t_slate_300: &'static str,
border_t_slate_400: &'static str,
border_t_slate_50: &'static str,
border_t_slate_500: &'static str,
border_t_slate_600: &'static str,
border_t_slate_700: &'static str,
border_t_slate_800: &'static str,
border_t_slate_900: &'static str,
border_t_stone_100: &'static str,
border_t_stone_200: &'static str,
border_t_stone_300: &'static str,
border_t_stone_400: &'static str,
border_t_stone_50: &'static str,
border_t_stone_500: &'static str,
border_t_stone_600: &'static str,
border_t_stone_700: &'static str,
border_t_stone_800: &'static str,
border_t_stone_900: &'static str,
border_t_teal_100: &'static str,
border_t_teal_200: &'static str,
border_t_teal_300: &'static str,
border_t_teal_400: &'static str,
border_t_teal_50: &'static str,
border_t_teal_500: &'static str,
border_t_teal_600: &'static str,
border_t_teal_700: &'static str,
border_t_teal_800: &'static str,
border_t_teal_900: &'static str,
border_t_transparent: &'static str,
border_t_violet_100: &'static str,
border_t_violet_200: &'static str,
border_t_violet_300: &'static str,
border_t_violet_400: &'static str,
border_t_violet_50: &'static str,
border_t_violet_500: &'static str,
border_t_violet_600: &'static str,
border_t_violet_700: &'static str,
border_t_violet_800: &'static str,
border_t_violet_900: &'static str,
border_t_white: &'static str,
border_t_yellow_100: &'static str,
border_t_yellow_200: &'static str,
border_t_yellow_300: &'static str,
border_t_yellow_400: &'static str,
border_t_yellow_50: &'static str,
border_t_yellow_500: &'static str,
border_t_yellow_600: &'static str,
border_t_yellow_700: &'static str,
border_t_yellow_800: &'static str,
border_t_yellow_900: &'static str,
border_t_zinc_100: &'static str,
border_t_zinc_200: &'static str,
border_t_zinc_300: &'static str,
border_t_zinc_400: &'static str,
border_t_zinc_50: &'static str,
border_t_zinc_500: &'static str,
border_t_zinc_600: &'static str,
border_t_zinc_700: &'static str,
border_t_zinc_800: &'static str,
border_t_zinc_900: &'static str,
border_teal_100: &'static str,
border_teal_200: &'static str,
border_teal_300: &'static str,
border_teal_400: &'static str,
border_teal_50: &'static str,
border_teal_500: &'static str,
border_teal_600: &'static str,
border_teal_700: &'static str,
border_teal_800: &'static str,
border_teal_900: &'static str,
border_transparent: &'static str,
border_violet_100: &'static str,
border_violet_200: &'static str,
border_violet_300: &'static str,
border_violet_400: &'static str,
border_violet_50: &'static str,
border_violet_500: &'static str,
border_violet_600: &'static str,
border_violet_700: &'static str,
border_violet_800: &'static str,
border_violet_900: &'static str,
border_white: &'static str,
border_x: &'static str,
border_x_0: &'static str,
border_x_2: &'static str,
border_x_4: &'static str,
border_x_8: &'static str,
border_x_amber_100: &'static str,
border_x_amber_200: &'static str,
border_x_amber_300: &'static str,
border_x_amber_400: &'static str,
border_x_amber_50: &'static str,
border_x_amber_500: &'static str,
border_x_amber_600: &'static str,
border_x_amber_700: &'static str,
border_x_amber_800: &'static str,
border_x_amber_900: &'static str,
border_x_black: &'static str,
border_x_blue_100: &'static str,
border_x_blue_200: &'static str,
border_x_blue_300: &'static str,
border_x_blue_400: &'static str,
border_x_blue_50: &'static str,
border_x_blue_500: &'static str,
border_x_blue_600: &'static str,
border_x_blue_700: &'static str,
border_x_blue_800: &'static str,
border_x_blue_900: &'static str,
border_x_current: &'static str,
border_x_cyan_100: &'static str,
border_x_cyan_200: &'static str,
border_x_cyan_300: &'static str,
border_x_cyan_400: &'static str,
border_x_cyan_50: &'static str,
border_x_cyan_500: &'static str,
border_x_cyan_600: &'static str,
border_x_cyan_700: &'static str,
border_x_cyan_800: &'static str,
border_x_cyan_900: &'static str,
border_x_emerald_100: &'static str,
border_x_emerald_200: &'static str,
border_x_emerald_300: &'static str,
border_x_emerald_400: &'static str,
border_x_emerald_50: &'static str,
border_x_emerald_500: &'static str,
border_x_emerald_600: &'static str,
border_x_emerald_700: &'static str,
border_x_emerald_800: &'static str,
border_x_emerald_900: &'static str,
border_x_fuchsia_100: &'static str,
border_x_fuchsia_200: &'static str,
border_x_fuchsia_300: &'static str,
border_x_fuchsia_400: &'static str,
border_x_fuchsia_50: &'static str,
border_x_fuchsia_500: &'static str,
border_x_fuchsia_600: &'static str,
border_x_fuchsia_700: &'static str,
border_x_fuchsia_800: &'static str,
border_x_fuchsia_900: &'static str,
border_x_gray_100: &'static str,
border_x_gray_200: &'static str,
border_x_gray_300: &'static str,
border_x_gray_400: &'static str,
border_x_gray_50: &'static str,
border_x_gray_500: &'static str,
border_x_gray_600: &'static str,
border_x_gray_700: &'static str,
border_x_gray_800: &'static str,
border_x_gray_900: &'static str,
border_x_green_100: &'static str,
border_x_green_200: &'static str,
border_x_green_300: &'static str,
border_x_green_400: &'static str,
border_x_green_50: &'static str,
border_x_green_500: &'static str,
border_x_green_600: &'static str,
border_x_green_700: &'static str,
border_x_green_800: &'static str,
border_x_green_900: &'static str,
border_x_indigo_100: &'static str,
border_x_indigo_200: &'static str,
border_x_indigo_300: &'static str,
border_x_indigo_400: &'static str,
border_x_indigo_50: &'static str,
border_x_indigo_500: &'static str,
border_x_indigo_600: &'static str,
border_x_indigo_700: &'static str,
border_x_indigo_800: &'static str,
border_x_indigo_900: &'static str,
border_x_inherit: &'static str,
border_x_lime_100: &'static str,
border_x_lime_200: &'static str,
border_x_lime_300: &'static str,
border_x_lime_400: &'static str,
border_x_lime_50: &'static str,
border_x_lime_500: &'static str,
border_x_lime_600: &'static str,
border_x_lime_700: &'static str,
border_x_lime_800: &'static str,
border_x_lime_900: &'static str,
border_x_neutral_100: &'static str,
border_x_neutral_200: &'static str,
border_x_neutral_300: &'static str,
border_x_neutral_400: &'static str,
border_x_neutral_50: &'static str,
border_x_neutral_500: &'static str,
border_x_neutral_600: &'static str,
border_x_neutral_700: &'static str,
border_x_neutral_800: &'static str,
border_x_neutral_900: &'static str,
border_x_orange_100: &'static str,
border_x_orange_200: &'static str,
border_x_orange_300: &'static str,
border_x_orange_400: &'static str,
border_x_orange_50: &'static str,
border_x_orange_500: &'static str,
border_x_orange_600: &'static str,
border_x_orange_700: &'static str,
border_x_orange_800: &'static str,
border_x_orange_900: &'static str,
border_x_pink_100: &'static str,
border_x_pink_200: &'static str,
border_x_pink_300: &'static str,
border_x_pink_400: &'static str,
border_x_pink_50: &'static str,
border_x_pink_500: &'static str,
border_x_pink_600: &'static str,
border_x_pink_700: &'static str,
border_x_pink_800: &'static str,
border_x_pink_900: &'static str,
border_x_purple_100: &'static str,
border_x_purple_200: &'static str,
border_x_purple_300: &'static str,
border_x_purple_400: &'static str,
border_x_purple_50: &'static str,
border_x_purple_500: &'static str,
border_x_purple_600: &'static str,
border_x_purple_700: &'static str,
border_x_purple_800: &'static str,
border_x_purple_900: &'static str,
border_x_red_100: &'static str,
border_x_red_200: &'static str,
border_x_red_300: &'static str,
border_x_red_400: &'static str,
border_x_red_50: &'static str,
border_x_red_500: &'static str,
border_x_red_600: &'static str,
border_x_red_700: &'static str,
border_x_red_800: &'static str,
border_x_red_900: &'static str,
border_x_rose_100: &'static str,
border_x_rose_200: &'static str,
border_x_rose_300: &'static str,
border_x_rose_400: &'static str,
border_x_rose_50: &'static str,
border_x_rose_500: &'static str,
border_x_rose_600: &'static str,
border_x_rose_700: &'static str,
border_x_rose_800: &'static str,
border_x_rose_900: &'static str,
border_x_sky_100: &'static str,
border_x_sky_200: &'static str,
border_x_sky_300: &'static str,
border_x_sky_400: &'static str,
border_x_sky_50: &'static str,
border_x_sky_500: &'static str,
border_x_sky_600: &'static str,
border_x_sky_700: &'static str,
border_x_sky_800: &'static str,
border_x_sky_900: &'static str,
border_x_slate_100: &'static str,
border_x_slate_200: &'static str,
border_x_slate_300: &'static str,
border_x_slate_400: &'static str,
border_x_slate_50: &'static str,
border_x_slate_500: &'static str,
border_x_slate_600: &'static str,
border_x_slate_700: &'static str,
border_x_slate_800: &'static str,
border_x_slate_900: &'static str,
border_x_stone_100: &'static str,
border_x_stone_200: &'static str,
border_x_stone_300: &'static str,
border_x_stone_400: &'static str,
border_x_stone_50: &'static str,
border_x_stone_500: &'static str,
border_x_stone_600: &'static str,
border_x_stone_700: &'static str,
border_x_stone_800: &'static str,
border_x_stone_900: &'static str,
border_x_teal_100: &'static str,
border_x_teal_200: &'static str,
border_x_teal_300: &'static str,
border_x_teal_400: &'static str,
border_x_teal_50: &'static str,
border_x_teal_500: &'static str,
border_x_teal_600: &'static str,
border_x_teal_700: &'static str,
border_x_teal_800: &'static str,
border_x_teal_900: &'static str,
border_x_transparent: &'static str,
border_x_violet_100: &'static str,
border_x_violet_200: &'static str,
border_x_violet_300: &'static str,
border_x_violet_400: &'static str,
border_x_violet_50: &'static str,
border_x_violet_500: &'static str,
border_x_violet_600: &'static str,
border_x_violet_700: &'static str,
border_x_violet_800: &'static str,
border_x_violet_900: &'static str,
border_x_white: &'static str,
border_x_yellow_100: &'static str,
border_x_yellow_200: &'static str,
border_x_yellow_300: &'static str,
border_x_yellow_400: &'static str,
border_x_yellow_50: &'static str,
border_x_yellow_500: &'static str,
border_x_yellow_600: &'static str,
border_x_yellow_700: &'static str,
border_x_yellow_800: &'static str,
border_x_yellow_900: &'static str,
border_x_zinc_100: &'static str,
border_x_zinc_200: &'static str,
border_x_zinc_300: &'static str,
border_x_zinc_400: &'static str,
border_x_zinc_50: &'static str,
border_x_zinc_500: &'static str,
border_x_zinc_600: &'static str,
border_x_zinc_700: &'static str,
border_x_zinc_800: &'static str,
border_x_zinc_900: &'static str,
border_y: &'static str,
border_y_0: &'static str,
border_y_2: &'static str,
border_y_4: &'static str,
border_y_8: &'static str,
border_y_amber_100: &'static str,
border_y_amber_200: &'static str,
border_y_amber_300: &'static str,
border_y_amber_400: &'static str,
border_y_amber_50: &'static str,
border_y_amber_500: &'static str,
border_y_amber_600: &'static str,
border_y_amber_700: &'static str,
border_y_amber_800: &'static str,
border_y_amber_900: &'static str,
border_y_black: &'static str,
border_y_blue_100: &'static str,
border_y_blue_200: &'static str,
border_y_blue_300: &'static str,
border_y_blue_400: &'static str,
border_y_blue_50: &'static str,
border_y_blue_500: &'static str,
border_y_blue_600: &'static str,
border_y_blue_700: &'static str,
border_y_blue_800: &'static str,
border_y_blue_900: &'static str,
border_y_current: &'static str,
border_y_cyan_100: &'static str,
border_y_cyan_200: &'static str,
border_y_cyan_300: &'static str,
border_y_cyan_400: &'static str,
border_y_cyan_50: &'static str,
border_y_cyan_500: &'static str,
border_y_cyan_600: &'static str,
border_y_cyan_700: &'static str,
border_y_cyan_800: &'static str,
border_y_cyan_900: &'static str,
border_y_emerald_100: &'static str,
border_y_emerald_200: &'static str,
border_y_emerald_300: &'static str,
border_y_emerald_400: &'static str,
border_y_emerald_50: &'static str,
border_y_emerald_500: &'static str,
border_y_emerald_600: &'static str,
border_y_emerald_700: &'static str,
border_y_emerald_800: &'static str,
border_y_emerald_900: &'static str,
border_y_fuchsia_100: &'static str,
border_y_fuchsia_200: &'static str,
border_y_fuchsia_300: &'static str,
border_y_fuchsia_400: &'static str,
border_y_fuchsia_50: &'static str,
border_y_fuchsia_500: &'static str,
border_y_fuchsia_600: &'static str,
border_y_fuchsia_700: &'static str,
border_y_fuchsia_800: &'static str,
border_y_fuchsia_900: &'static str,
border_y_gray_100: &'static str,
border_y_gray_200: &'static str,
border_y_gray_300: &'static str,
border_y_gray_400: &'static str,
border_y_gray_50: &'static str,
border_y_gray_500: &'static str,
border_y_gray_600: &'static str,
border_y_gray_700: &'static str,
border_y_gray_800: &'static str,
border_y_gray_900: &'static str,
border_y_green_100: &'static str,
border_y_green_200: &'static str,
border_y_green_300: &'static str,
border_y_green_400: &'static str,
border_y_green_50: &'static str,
border_y_green_500: &'static str,
border_y_green_600: &'static str,
border_y_green_700: &'static str,
border_y_green_800: &'static str,
border_y_green_900: &'static str,
border_y_indigo_100: &'static str,
border_y_indigo_200: &'static str,
border_y_indigo_300: &'static str,
border_y_indigo_400: &'static str,
border_y_indigo_50: &'static str,
border_y_indigo_500: &'static str,
border_y_indigo_600: &'static str,
border_y_indigo_700: &'static str,
border_y_indigo_800: &'static str,
border_y_indigo_900: &'static str,
border_y_inherit: &'static str,
border_y_lime_100: &'static str,
border_y_lime_200: &'static str,
border_y_lime_300: &'static str,
border_y_lime_400: &'static str,
border_y_lime_50: &'static str,
border_y_lime_500: &'static str,
border_y_lime_600: &'static str,
border_y_lime_700: &'static str,
border_y_lime_800: &'static str,
border_y_lime_900: &'static str,
border_y_neutral_100: &'static str,
border_y_neutral_200: &'static str,
border_y_neutral_300: &'static str,
border_y_neutral_400: &'static str,
border_y_neutral_50: &'static str,
border_y_neutral_500: &'static str,
border_y_neutral_600: &'static str,
border_y_neutral_700: &'static str,
border_y_neutral_800: &'static str,
border_y_neutral_900: &'static str,
border_y_orange_100: &'static str,
border_y_orange_200: &'static str,
border_y_orange_300: &'static str,
border_y_orange_400: &'static str,
border_y_orange_50: &'static str,
border_y_orange_500: &'static str,
border_y_orange_600: &'static str,
border_y_orange_700: &'static str,
border_y_orange_800: &'static str,
border_y_orange_900: &'static str,
border_y_pink_100: &'static str,
border_y_pink_200: &'static str,
border_y_pink_300: &'static str,
border_y_pink_400: &'static str,
border_y_pink_50: &'static str,
border_y_pink_500: &'static str,
border_y_pink_600: &'static str,
border_y_pink_700: &'static str,
border_y_pink_800: &'static str,
border_y_pink_900: &'static str,
border_y_purple_100: &'static str,
border_y_purple_200: &'static str,
border_y_purple_300: &'static str,
border_y_purple_400: &'static str,
border_y_purple_50: &'static str,
border_y_purple_500: &'static str,
border_y_purple_600: &'static str,
border_y_purple_700: &'static str,
border_y_purple_800: &'static str,
border_y_purple_900: &'static str,
border_y_red_100: &'static str,
border_y_red_200: &'static str,
border_y_red_300: &'static str,
border_y_red_400: &'static str,
border_y_red_50: &'static str,
border_y_red_500: &'static str,
border_y_red_600: &'static str,
border_y_red_700: &'static str,
border_y_red_800: &'static str,
border_y_red_900: &'static str,
border_y_rose_100: &'static str,
border_y_rose_200: &'static str,
border_y_rose_300: &'static str,
border_y_rose_400: &'static str,
border_y_rose_50: &'static str,
border_y_rose_500: &'static str,
border_y_rose_600: &'static str,
border_y_rose_700: &'static str,
border_y_rose_800: &'static str,
border_y_rose_900: &'static str,
border_y_sky_100: &'static str,
border_y_sky_200: &'static str,
border_y_sky_300: &'static str,
border_y_sky_400: &'static str,
border_y_sky_50: &'static str,
border_y_sky_500: &'static str,
border_y_sky_600: &'static str,
border_y_sky_700: &'static str,
border_y_sky_800: &'static str,
border_y_sky_900: &'static str,
border_y_slate_100: &'static str,
border_y_slate_200: &'static str,
border_y_slate_300: &'static str,
border_y_slate_400: &'static str,
border_y_slate_50: &'static str,
border_y_slate_500: &'static str,
border_y_slate_600: &'static str,
border_y_slate_700: &'static str,
border_y_slate_800: &'static str,
border_y_slate_900: &'static str,
border_y_stone_100: &'static str,
border_y_stone_200: &'static str,
border_y_stone_300: &'static str,
border_y_stone_400: &'static str,
border_y_stone_50: &'static str,
border_y_stone_500: &'static str,
border_y_stone_600: &'static str,
border_y_stone_700: &'static str,
border_y_stone_800: &'static str,
border_y_stone_900: &'static str,
border_y_teal_100: &'static str,
border_y_teal_200: &'static str,
border_y_teal_300: &'static str,
border_y_teal_400: &'static str,
border_y_teal_50: &'static str,
border_y_teal_500: &'static str,
border_y_teal_600: &'static str,
border_y_teal_700: &'static str,
border_y_teal_800: &'static str,
border_y_teal_900: &'static str,
border_y_transparent: &'static str,
border_y_violet_100: &'static str,
border_y_violet_200: &'static str,
border_y_violet_300: &'static str,
border_y_violet_400: &'static str,
border_y_violet_50: &'static str,
border_y_violet_500: &'static str,
border_y_violet_600: &'static str,
border_y_violet_700: &'static str,
border_y_violet_800: &'static str,
border_y_violet_900: &'static str,
border_y_white: &'static str,
border_y_yellow_100: &'static str,
border_y_yellow_200: &'static str,
border_y_yellow_300: &'static str,
border_y_yellow_400: &'static str,
border_y_yellow_50: &'static str,
border_y_yellow_500: &'static str,
border_y_yellow_600: &'static str,
border_y_yellow_700: &'static str,
border_y_yellow_800: &'static str,
border_y_yellow_900: &'static str,
border_y_zinc_100: &'static str,
border_y_zinc_200: &'static str,
border_y_zinc_300: &'static str,
border_y_zinc_400: &'static str,
border_y_zinc_50: &'static str,
border_y_zinc_500: &'static str,
border_y_zinc_600: &'static str,
border_y_zinc_700: &'static str,
border_y_zinc_800: &'static str,
border_y_zinc_900: &'static str,
border_yellow_100: &'static str,
border_yellow_200: &'static str,
border_yellow_300: &'static str,
border_yellow_400: &'static str,
border_yellow_50: &'static str,
border_yellow_500: &'static str,
border_yellow_600: &'static str,
border_yellow_700: &'static str,
border_yellow_800: &'static str,
border_yellow_900: &'static str,
border_zinc_100: &'static str,
border_zinc_200: &'static str,
border_zinc_300: &'static str,
border_zinc_400: &'static str,
border_zinc_50: &'static str,
border_zinc_500: &'static str,
border_zinc_600: &'static str,
border_zinc_700: &'static str,
border_zinc_800: &'static str,
border_zinc_900: &'static str,
outline: &'static str,
outline_0: &'static str,
outline_1: &'static str,
outline_2: &'static str,
outline_4: &'static str,
outline_8: &'static str,
outline_amber_100: &'static str,
outline_amber_200: &'static str,
outline_amber_300: &'static str,
outline_amber_400: &'static str,
outline_amber_50: &'static str,
outline_amber_500: &'static str,
outline_amber_600: &'static str,
outline_amber_700: &'static str,
outline_amber_800: &'static str,
outline_amber_900: &'static str,
outline_black: &'static str,
outline_blue_100: &'static str,
outline_blue_200: &'static str,
outline_blue_300: &'static str,
outline_blue_400: &'static str,
outline_blue_50: &'static str,
outline_blue_500: &'static str,
outline_blue_600: &'static str,
outline_blue_700: &'static str,
outline_blue_800: &'static str,
outline_blue_900: &'static str,
outline_current: &'static str,
outline_cyan_100: &'static str,
outline_cyan_200: &'static str,
outline_cyan_300: &'static str,
outline_cyan_400: &'static str,
outline_cyan_50: &'static str,
outline_cyan_500: &'static str,
outline_cyan_600: &'static str,
outline_cyan_700: &'static str,
outline_cyan_800: &'static str,
outline_cyan_900: &'static str,
outline_dashed: &'static str,
outline_dotted: &'static str,
outline_double: &'static str,
outline_emerald_100: &'static str,
outline_emerald_200: &'static str,
outline_emerald_300: &'static str,
outline_emerald_400: &'static str,
outline_emerald_50: &'static str,
outline_emerald_500: &'static str,
outline_emerald_600: &'static str,
outline_emerald_700: &'static str,
outline_emerald_800: &'static str,
outline_emerald_900: &'static str,
outline_fuchsia_100: &'static str,
outline_fuchsia_200: &'static str,
outline_fuchsia_300: &'static str,
outline_fuchsia_400: &'static str,
outline_fuchsia_50: &'static str,
outline_fuchsia_500: &'static str,
outline_fuchsia_600: &'static str,
outline_fuchsia_700: &'static str,
outline_fuchsia_800: &'static str,
outline_fuchsia_900: &'static str,
outline_gray_100: &'static str,
outline_gray_200: &'static str,
outline_gray_300: &'static str,
outline_gray_400: &'static str,
outline_gray_50: &'static str,
outline_gray_500: &'static str,
outline_gray_600: &'static str,
outline_gray_700: &'static str,
outline_gray_800: &'static str,
outline_gray_900: &'static str,
outline_green_100: &'static str,
outline_green_200: &'static str,
outline_green_300: &'static str,
outline_green_400: &'static str,
outline_green_50: &'static str,
outline_green_500: &'static str,
outline_green_600: &'static str,
outline_green_700: &'static str,
outline_green_800: &'static str,
outline_green_900: &'static str,
outline_hidden: &'static str,
outline_indigo_100: &'static str,
outline_indigo_200: &'static str,
outline_indigo_300: &'static str,
outline_indigo_400: &'static str,
outline_indigo_50: &'static str,
outline_indigo_500: &'static str,
outline_indigo_600: &'static str,
outline_indigo_700: &'static str,
outline_indigo_800: &'static str,
outline_indigo_900: &'static str,
outline_inherit: &'static str,
outline_lime_100: &'static str,
outline_lime_200: &'static str,
outline_lime_300: &'static str,
outline_lime_400: &'static str,
outline_lime_50: &'static str,
outline_lime_500: &'static str,
outline_lime_600: &'static str,
outline_lime_700: &'static str,
outline_lime_800: &'static str,
outline_lime_900: &'static str,
outline_neutral_100: &'static str,
outline_neutral_200: &'static str,
outline_neutral_300: &'static str,
outline_neutral_400: &'static str,
outline_neutral_50: &'static str,
outline_neutral_500: &'static str,
outline_neutral_600: &'static str,
outline_neutral_700: &'static str,
outline_neutral_800: &'static str,
outline_neutral_900: &'static str,
outline_none: &'static str,
outline_offset_0: &'static str,
outline_offset_1: &'static str,
outline_offset_2: &'static str,
outline_offset_4: &'static str,
outline_offset_8: &'static str,
outline_orange_100: &'static str,
outline_orange_200: &'static str,
outline_orange_300: &'static str,
outline_orange_400: &'static str,
outline_orange_50: &'static str,
outline_orange_500: &'static str,
outline_orange_600: &'static str,
outline_orange_700: &'static str,
outline_orange_800: &'static str,
outline_orange_900: &'static str,
outline_pink_100: &'static str,
outline_pink_200: &'static str,
outline_pink_300: &'static str,
outline_pink_400: &'static str,
outline_pink_50: &'static str,
outline_pink_500: &'static str,
outline_pink_600: &'static str,
outline_pink_700: &'static str,
outline_pink_800: &'static str,
outline_pink_900: &'static str,
outline_purple_100: &'static str,
outline_purple_200: &'static str,
outline_purple_300: &'static str,
outline_purple_400: &'static str,
outline_purple_50: &'static str,
outline_purple_500: &'static str,
outline_purple_600: &'static str,
outline_purple_700: &'static str,
outline_purple_800: &'static str,
outline_purple_900: &'static str,
outline_red_100: &'static str,
outline_red_200: &'static str,
outline_red_300: &'static str,
outline_red_400: &'static str,
outline_red_50: &'static str,
outline_red_500: &'static str,
outline_red_600: &'static str,
outline_red_700: &'static str,
outline_red_800: &'static str,
outline_red_900: &'static str,
outline_rose_100: &'static str,
outline_rose_200: &'static str,
outline_rose_300: &'static str,
outline_rose_400: &'static str,
outline_rose_50: &'static str,
outline_rose_500: &'static str,
outline_rose_600: &'static str,
outline_rose_700: &'static str,
outline_rose_800: &'static str,
outline_rose_900: &'static str,
outline_sky_100: &'static str,
outline_sky_200: &'static str,
outline_sky_300: &'static str,
outline_sky_400: &'static str,
outline_sky_50: &'static str,
outline_sky_500: &'static str,
outline_sky_600: &'static str,
outline_sky_700: &'static str,
outline_sky_800: &'static str,
outline_sky_900: &'static str,
outline_slate_100: &'static str,
outline_slate_200: &'static str,
outline_slate_300: &'static str,
outline_slate_400: &'static str,
outline_slate_50: &'static str,
outline_slate_500: &'static str,
outline_slate_600: &'static str,
outline_slate_700: &'static str,
outline_slate_800: &'static str,
outline_slate_900: &'static str,
outline_stone_100: &'static str,
outline_stone_200: &'static str,
outline_stone_300: &'static str,
outline_stone_400: &'static str,
outline_stone_50: &'static str,
outline_stone_500: &'static str,
outline_stone_600: &'static str,
outline_stone_700: &'static str,
outline_stone_800: &'static str,
outline_stone_900: &'static str,
outline_teal_100: &'static str,
outline_teal_200: &'static str,
outline_teal_300: &'static str,
outline_teal_400: &'static str,
outline_teal_50: &'static str,
outline_teal_500: &'static str,
outline_teal_600: &'static str,
outline_teal_700: &'static str,
outline_teal_800: &'static str,
outline_teal_900: &'static str,
outline_transparent: &'static str,
outline_violet_100: &'static str,
outline_violet_200: &'static str,
outline_violet_300: &'static str,
outline_violet_400: &'static str,
outline_violet_50: &'static str,
outline_violet_500: &'static str,
outline_violet_600: &'static str,
outline_violet_700: &'static str,
outline_violet_800: &'static str,
outline_violet_900: &'static str,
outline_white: &'static str,
outline_yellow_100: &'static str,
outline_yellow_200: &'static str,
outline_yellow_300: &'static str,
outline_yellow_400: &'static str,
outline_yellow_50: &'static str,
outline_yellow_500: &'static str,
outline_yellow_600: &'static str,
outline_yellow_700: &'static str,
outline_yellow_800: &'static str,
outline_yellow_900: &'static str,
outline_zinc_100: &'static str,
outline_zinc_200: &'static str,
outline_zinc_300: &'static str,
outline_zinc_400: &'static str,
outline_zinc_50: &'static str,
outline_zinc_500: &'static str,
outline_zinc_600: &'static str,
outline_zinc_700: &'static str,
outline_zinc_800: &'static str,
outline_zinc_900: &'static str,
ring: &'static str,
ring_0: &'static str,
ring_1: &'static str,
ring_2: &'static str,
ring_4: &'static str,
ring_8: &'static str,
ring_amber_100: &'static str,
ring_amber_200: &'static str,
ring_amber_300: &'static str,
ring_amber_400: &'static str,
ring_amber_50: &'static str,
ring_amber_500: &'static str,
ring_amber_600: &'static str,
ring_amber_700: &'static str,
ring_amber_800: &'static str,
ring_amber_900: &'static str,
ring_black: &'static str,
ring_blue_100: &'static str,
ring_blue_200: &'static str,
ring_blue_300: &'static str,
ring_blue_400: &'static str,
ring_blue_50: &'static str,
ring_blue_500: &'static str,
ring_blue_600: &'static str,
ring_blue_700: &'static str,
ring_blue_800: &'static str,
ring_blue_900: &'static str,
ring_current: &'static str,
ring_cyan_100: &'static str,
ring_cyan_200: &'static str,
ring_cyan_300: &'static str,
ring_cyan_400: &'static str,
ring_cyan_50: &'static str,
ring_cyan_500: &'static str,
ring_cyan_600: &'static str,
ring_cyan_700: &'static str,
ring_cyan_800: &'static str,
ring_cyan_900: &'static str,
ring_emerald_100: &'static str,
ring_emerald_200: &'static str,
ring_emerald_300: &'static str,
ring_emerald_400: &'static str,
ring_emerald_50: &'static str,
ring_emerald_500: &'static str,
ring_emerald_600: &'static str,
ring_emerald_700: &'static str,
ring_emerald_800: &'static str,
ring_emerald_900: &'static str,
ring_fuchsia_100: &'static str,
ring_fuchsia_200: &'static str,
ring_fuchsia_300: &'static str,
ring_fuchsia_400: &'static str,
ring_fuchsia_50: &'static str,
ring_fuchsia_500: &'static str,
ring_fuchsia_600: &'static str,
ring_fuchsia_700: &'static str,
ring_fuchsia_800: &'static str,
ring_fuchsia_900: &'static str,
ring_gray_100: &'static str,
ring_gray_200: &'static str,
ring_gray_300: &'static str,
ring_gray_400: &'static str,
ring_gray_50: &'static str,
ring_gray_500: &'static str,
ring_gray_600: &'static str,
ring_gray_700: &'static str,
ring_gray_800: &'static str,
ring_gray_900: &'static str,
ring_green_100: &'static str,
ring_green_200: &'static str,
ring_green_300: &'static str,
ring_green_400: &'static str,
ring_green_50: &'static str,
ring_green_500: &'static str,
ring_green_600: &'static str,
ring_green_700: &'static str,
ring_green_800: &'static str,
ring_green_900: &'static str,
ring_indigo_100: &'static str,
ring_indigo_200: &'static str,
ring_indigo_300: &'static str,
ring_indigo_400: &'static str,
ring_indigo_50: &'static str,
ring_indigo_500: &'static str,
ring_indigo_600: &'static str,
ring_indigo_700: &'static str,
ring_indigo_800: &'static str,
ring_indigo_900: &'static str,
ring_inherit: &'static str,
ring_inset: &'static str,
ring_lime_100: &'static str,
ring_lime_200: &'static str,
ring_lime_300: &'static str,
ring_lime_400: &'static str,
ring_lime_50: &'static str,
ring_lime_500: &'static str,
ring_lime_600: &'static str,
ring_lime_700: &'static str,
ring_lime_800: &'static str,
ring_lime_900: &'static str,
ring_neutral_100: &'static str,
ring_neutral_200: &'static str,
ring_neutral_300: &'static str,
ring_neutral_400: &'static str,
ring_neutral_50: &'static str,
ring_neutral_500: &'static str,
ring_neutral_600: &'static str,
ring_neutral_700: &'static str,
ring_neutral_800: &'static str,
ring_neutral_900: &'static str,
ring_offset_0: &'static str,
ring_offset_1: &'static str,
ring_offset_2: &'static str,
ring_offset_4: &'static str,
ring_offset_8: &'static str,
ring_offset_amber_100: &'static str,
ring_offset_amber_200: &'static str,
ring_offset_amber_300: &'static str,
ring_offset_amber_400: &'static str,
ring_offset_amber_50: &'static str,
ring_offset_amber_500: &'static str,
ring_offset_amber_600: &'static str,
ring_offset_amber_700: &'static str,
ring_offset_amber_800: &'static str,
ring_offset_amber_900: &'static str,
ring_offset_black: &'static str,
ring_offset_blue_100: &'static str,
ring_offset_blue_200: &'static str,
ring_offset_blue_300: &'static str,
ring_offset_blue_400: &'static str,
ring_offset_blue_50: &'static str,
ring_offset_blue_500: &'static str,
ring_offset_blue_600: &'static str,
ring_offset_blue_700: &'static str,
ring_offset_blue_800: &'static str,
ring_offset_blue_900: &'static str,
ring_offset_current: &'static str,
ring_offset_cyan_100: &'static str,
ring_offset_cyan_200: &'static str,
ring_offset_cyan_300: &'static str,
ring_offset_cyan_400: &'static str,
ring_offset_cyan_50: &'static str,
ring_offset_cyan_500: &'static str,
ring_offset_cyan_600: &'static str,
ring_offset_cyan_700: &'static str,
ring_offset_cyan_800: &'static str,
ring_offset_cyan_900: &'static str,
ring_offset_emerald_100: &'static str,
ring_offset_emerald_200: &'static str,
ring_offset_emerald_300: &'static str,
ring_offset_emerald_400: &'static str,
ring_offset_emerald_50: &'static str,
ring_offset_emerald_500: &'static str,
ring_offset_emerald_600: &'static str,
ring_offset_emerald_700: &'static str,
ring_offset_emerald_800: &'static str,
ring_offset_emerald_900: &'static str,
ring_offset_fuchsia_100: &'static str,
ring_offset_fuchsia_200: &'static str,
ring_offset_fuchsia_300: &'static str,
ring_offset_fuchsia_400: &'static str,
ring_offset_fuchsia_50: &'static str,
ring_offset_fuchsia_500: &'static str,
ring_offset_fuchsia_600: &'static str,
ring_offset_fuchsia_700: &'static str,
ring_offset_fuchsia_800: &'static str,
ring_offset_fuchsia_900: &'static str,
ring_offset_gray_100: &'static str,
ring_offset_gray_200: &'static str,
ring_offset_gray_300: &'static str,
ring_offset_gray_400: &'static str,
ring_offset_gray_50: &'static str,
ring_offset_gray_500: &'static str,
ring_offset_gray_600: &'static str,
ring_offset_gray_700: &'static str,
ring_offset_gray_800: &'static str,
ring_offset_gray_900: &'static str,
ring_offset_green_100: &'static str,
ring_offset_green_200: &'static str,
ring_offset_green_300: &'static str,
ring_offset_green_400: &'static str,
ring_offset_green_50: &'static str,
ring_offset_green_500: &'static str,
ring_offset_green_600: &'static str,
ring_offset_green_700: &'static str,
ring_offset_green_800: &'static str,
ring_offset_green_900: &'static str,
ring_offset_indigo_100: &'static str,
ring_offset_indigo_200: &'static str,
ring_offset_indigo_300: &'static str,
ring_offset_indigo_400: &'static str,
ring_offset_indigo_50: &'static str,
ring_offset_indigo_500: &'static str,
ring_offset_indigo_600: &'static str,
ring_offset_indigo_700: &'static str,
ring_offset_indigo_800: &'static str,
ring_offset_indigo_900: &'static str,
ring_offset_inherit: &'static str,
ring_offset_lime_100: &'static str,
ring_offset_lime_200: &'static str,
ring_offset_lime_300: &'static str,
ring_offset_lime_400: &'static str,
ring_offset_lime_50: &'static str,
ring_offset_lime_500: &'static str,
ring_offset_lime_600: &'static str,
ring_offset_lime_700: &'static str,
ring_offset_lime_800: &'static str,
ring_offset_lime_900: &'static str,
ring_offset_neutral_100: &'static str,
ring_offset_neutral_200: &'static str,
ring_offset_neutral_300: &'static str,
ring_offset_neutral_400: &'static str,
ring_offset_neutral_50: &'static str,
ring_offset_neutral_500: &'static str,
ring_offset_neutral_600: &'static str,
ring_offset_neutral_700: &'static str,
ring_offset_neutral_800: &'static str,
ring_offset_neutral_900: &'static str,
ring_offset_orange_100: &'static str,
ring_offset_orange_200: &'static str,
ring_offset_orange_300: &'static str,
ring_offset_orange_400: &'static str,
ring_offset_orange_50: &'static str,
ring_offset_orange_500: &'static str,
ring_offset_orange_600: &'static str,
ring_offset_orange_700: &'static str,
ring_offset_orange_800: &'static str,
ring_offset_orange_900: &'static str,
ring_offset_pink_100: &'static str,
ring_offset_pink_200: &'static str,
ring_offset_pink_300: &'static str,
ring_offset_pink_400: &'static str,
ring_offset_pink_50: &'static str,
ring_offset_pink_500: &'static str,
ring_offset_pink_600: &'static str,
ring_offset_pink_700: &'static str,
ring_offset_pink_800: &'static str,
ring_offset_pink_900: &'static str,
ring_offset_purple_100: &'static str,
ring_offset_purple_200: &'static str,
ring_offset_purple_300: &'static str,
ring_offset_purple_400: &'static str,
ring_offset_purple_50: &'static str,
ring_offset_purple_500: &'static str,
ring_offset_purple_600: &'static str,
ring_offset_purple_700: &'static str,
ring_offset_purple_800: &'static str,
ring_offset_purple_900: &'static str,
ring_offset_red_100: &'static str,
ring_offset_red_200: &'static str,
ring_offset_red_300: &'static str,
ring_offset_red_400: &'static str,
ring_offset_red_50: &'static str,
ring_offset_red_500: &'static str,
ring_offset_red_600: &'static str,
ring_offset_red_700: &'static str,
ring_offset_red_800: &'static str,
ring_offset_red_900: &'static str,
ring_offset_rose_100: &'static str,
ring_offset_rose_200: &'static str,
ring_offset_rose_300: &'static str,
ring_offset_rose_400: &'static str,
ring_offset_rose_50: &'static str,
ring_offset_rose_500: &'static str,
ring_offset_rose_600: &'static str,
ring_offset_rose_700: &'static str,
ring_offset_rose_800: &'static str,
ring_offset_rose_900: &'static str,
ring_offset_sky_100: &'static str,
ring_offset_sky_200: &'static str,
ring_offset_sky_300: &'static str,
ring_offset_sky_400: &'static str,
ring_offset_sky_50: &'static str,
ring_offset_sky_500: &'static str,
ring_offset_sky_600: &'static str,
ring_offset_sky_700: &'static str,
ring_offset_sky_800: &'static str,
ring_offset_sky_900: &'static str,
ring_offset_slate_100: &'static str,
ring_offset_slate_200: &'static str,
ring_offset_slate_300: &'static str,
ring_offset_slate_400: &'static str,
ring_offset_slate_50: &'static str,
ring_offset_slate_500: &'static str,
ring_offset_slate_600: &'static str,
ring_offset_slate_700: &'static str,
ring_offset_slate_800: &'static str,
ring_offset_slate_900: &'static str,
ring_offset_stone_100: &'static str,
ring_offset_stone_200: &'static str,
ring_offset_stone_300: &'static str,
ring_offset_stone_400: &'static str,
ring_offset_stone_50: &'static str,
ring_offset_stone_500: &'static str,
ring_offset_stone_600: &'static str,
ring_offset_stone_700: &'static str,
ring_offset_stone_800: &'static str,
ring_offset_stone_900: &'static str,
ring_offset_teal_100: &'static str,
ring_offset_teal_200: &'static str,
ring_offset_teal_300: &'static str,
ring_offset_teal_400: &'static str,
ring_offset_teal_50: &'static str,
ring_offset_teal_500: &'static str,
ring_offset_teal_600: &'static str,
ring_offset_teal_700: &'static str,
ring_offset_teal_800: &'static str,
ring_offset_teal_900: &'static str,
ring_offset_transparent: &'static str,
ring_offset_violet_100: &'static str,
ring_offset_violet_200: &'static str,
ring_offset_violet_300: &'static str,
ring_offset_violet_400: &'static str,
ring_offset_violet_50: &'static str,
ring_offset_violet_500: &'static str,
ring_offset_violet_600: &'static str,
ring_offset_violet_700: &'static str,
ring_offset_violet_800: &'static str,
ring_offset_violet_900: &'static str,
ring_offset_white: &'static str,
ring_offset_yellow_100: &'static str,
ring_offset_yellow_200: &'static str,
ring_offset_yellow_300: &'static str,
ring_offset_yellow_400: &'static str,
ring_offset_yellow_50: &'static str,
ring_offset_yellow_500: &'static str,
ring_offset_yellow_600: &'static str,
ring_offset_yellow_700: &'static str,
ring_offset_yellow_800: &'static str,
ring_offset_yellow_900: &'static str,
ring_offset_zinc_100: &'static str,
ring_offset_zinc_200: &'static str,
ring_offset_zinc_300: &'static str,
ring_offset_zinc_400: &'static str,
ring_offset_zinc_50: &'static str,
ring_offset_zinc_500: &'static str,
ring_offset_zinc_600: &'static str,
ring_offset_zinc_700: &'static str,
ring_offset_zinc_800: &'static str,
ring_offset_zinc_900: &'static str,
ring_opacity_0: &'static str,
ring_opacity_10: &'static str,
ring_opacity_100: &'static str,
ring_opacity_20: &'static str,
ring_opacity_25: &'static str,
ring_opacity_30: &'static str,
ring_opacity_40: &'static str,
ring_opacity_5: &'static str,
ring_opacity_50: &'static str,
ring_opacity_60: &'static str,
ring_opacity_70: &'static str,
ring_opacity_75: &'static str,
ring_opacity_80: &'static str,
ring_opacity_90: &'static str,
ring_opacity_95: &'static str,
ring_orange_100: &'static str,
ring_orange_200: &'static str,
ring_orange_300: &'static str,
ring_orange_400: &'static str,
ring_orange_50: &'static str,
ring_orange_500: &'static str,
ring_orange_600: &'static str,
ring_orange_700: &'static str,
ring_orange_800: &'static str,
ring_orange_900: &'static str,
ring_pink_100: &'static str,
ring_pink_200: &'static str,
ring_pink_300: &'static str,
ring_pink_400: &'static str,
ring_pink_50: &'static str,
ring_pink_500: &'static str,
ring_pink_600: &'static str,
ring_pink_700: &'static str,
ring_pink_800: &'static str,
ring_pink_900: &'static str,
ring_purple_100: &'static str,
ring_purple_200: &'static str,
ring_purple_300: &'static str,
ring_purple_400: &'static str,
ring_purple_50: &'static str,
ring_purple_500: &'static str,
ring_purple_600: &'static str,
ring_purple_700: &'static str,
ring_purple_800: &'static str,
ring_purple_900: &'static str,
ring_red_100: &'static str,
ring_red_200: &'static str,
ring_red_300: &'static str,
ring_red_400: &'static str,
ring_red_50: &'static str,
ring_red_500: &'static str,
ring_red_600: &'static str,
ring_red_700: &'static str,
ring_red_800: &'static str,
ring_red_900: &'static str,
ring_rose_100: &'static str,
ring_rose_200: &'static str,
ring_rose_300: &'static str,
ring_rose_400: &'static str,
ring_rose_50: &'static str,
ring_rose_500: &'static str,
ring_rose_600: &'static str,
ring_rose_700: &'static str,
ring_rose_800: &'static str,
ring_rose_900: &'static str,
ring_sky_100: &'static str,
ring_sky_200: &'static str,
ring_sky_300: &'static str,
ring_sky_400: &'static str,
ring_sky_50: &'static str,
ring_sky_500: &'static str,
ring_sky_600: &'static str,
ring_sky_700: &'static str,
ring_sky_800: &'static str,
ring_sky_900: &'static str,
ring_slate_100: &'static str,
ring_slate_200: &'static str,
ring_slate_300: &'static str,
ring_slate_400: &'static str,
ring_slate_50: &'static str,
ring_slate_500: &'static str,
ring_slate_600: &'static str,
ring_slate_700: &'static str,
ring_slate_800: &'static str,
ring_slate_900: &'static str,
ring_stone_100: &'static str,
ring_stone_200: &'static str,
ring_stone_300: &'static str,
ring_stone_400: &'static str,
ring_stone_50: &'static str,
ring_stone_500: &'static str,
ring_stone_600: &'static str,
ring_stone_700: &'static str,
ring_stone_800: &'static str,
ring_stone_900: &'static str,
ring_teal_100: &'static str,
ring_teal_200: &'static str,
ring_teal_300: &'static str,
ring_teal_400: &'static str,
ring_teal_50: &'static str,
ring_teal_500: &'static str,
ring_teal_600: &'static str,
ring_teal_700: &'static str,
ring_teal_800: &'static str,
ring_teal_900: &'static str,
ring_transparent: &'static str,
ring_violet_100: &'static str,
ring_violet_200: &'static str,
ring_violet_300: &'static str,
ring_violet_400: &'static str,
ring_violet_50: &'static str,
ring_violet_500: &'static str,
ring_violet_600: &'static str,
ring_violet_700: &'static str,
ring_violet_800: &'static str,
ring_violet_900: &'static str,
ring_white: &'static str,
ring_yellow_100: &'static str,
ring_yellow_200: &'static str,
ring_yellow_300: &'static str,
ring_yellow_400: &'static str,
ring_yellow_50: &'static str,
ring_yellow_500: &'static str,
ring_yellow_600: &'static str,
ring_yellow_700: &'static str,
ring_yellow_800: &'static str,
ring_yellow_900: &'static str,
ring_zinc_100: &'static str,
ring_zinc_200: &'static str,
ring_zinc_300: &'static str,
ring_zinc_400: &'static str,
ring_zinc_50: &'static str,
ring_zinc_500: &'static str,
ring_zinc_600: &'static str,
ring_zinc_700: &'static str,
ring_zinc_800: &'static str,
ring_zinc_900: &'static str,
rounded: &'static str,
rounded_2xl: &'static str,
rounded_3xl: &'static str,
rounded_b: &'static str,
rounded_b_2xl: &'static str,
rounded_b_3xl: &'static str,
rounded_b_full: &'static str,
rounded_b_lg: &'static str,
rounded_b_md: &'static str,
rounded_b_none: &'static str,
rounded_b_sm: &'static str,
rounded_b_xl: &'static str,
rounded_bl: &'static str,
rounded_bl_2xl: &'static str,
rounded_bl_3xl: &'static str,
rounded_bl_full: &'static str,
rounded_bl_lg: &'static str,
rounded_bl_md: &'static str,
rounded_bl_none: &'static str,
rounded_bl_sm: &'static str,
rounded_bl_xl: &'static str,
rounded_br: &'static str,
rounded_br_2xl: &'static str,
rounded_br_3xl: &'static str,
rounded_br_full: &'static str,
rounded_br_lg: &'static str,
rounded_br_md: &'static str,
rounded_br_none: &'static str,
rounded_br_sm: &'static str,
rounded_br_xl: &'static str,
rounded_full: &'static str,
rounded_l: &'static str,
rounded_l_2xl: &'static str,
rounded_l_3xl: &'static str,
rounded_l_full: &'static str,
rounded_l_lg: &'static str,
rounded_l_md: &'static str,
rounded_l_none: &'static str,
rounded_l_sm: &'static str,
rounded_l_xl: &'static str,
rounded_lg: &'static str,
rounded_md: &'static str,
rounded_none: &'static str,
rounded_r: &'static str,
rounded_r_2xl: &'static str,
rounded_r_3xl: &'static str,
rounded_r_full: &'static str,
rounded_r_lg: &'static str,
rounded_r_md: &'static str,
rounded_r_none: &'static str,
rounded_r_sm: &'static str,
rounded_r_xl: &'static str,
rounded_sm: &'static str,
rounded_t: &'static str,
rounded_t_2xl: &'static str,
rounded_t_3xl: &'static str,
rounded_t_full: &'static str,
rounded_t_lg: &'static str,
rounded_t_md: &'static str,
rounded_t_none: &'static str,
rounded_t_sm: &'static str,
rounded_t_xl: &'static str,
rounded_tl: &'static str,
rounded_tl_2xl: &'static str,
rounded_tl_3xl: &'static str,
rounded_tl_full: &'static str,
rounded_tl_lg: &'static str,
rounded_tl_md: &'static str,
rounded_tl_none: &'static str,
rounded_tl_sm: &'static str,
rounded_tl_xl: &'static str,
rounded_tr: &'static str,
rounded_tr_2xl: &'static str,
rounded_tr_3xl: &'static str,
rounded_tr_full: &'static str,
rounded_tr_lg: &'static str,
rounded_tr_md: &'static str,
rounded_tr_none: &'static str,
rounded_tr_sm: &'static str,
rounded_tr_xl: &'static str,
rounded_xl: &'static str,
}
pub struct Effects {
bg_blend_color: &'static str,
bg_blend_color_burn: &'static str,
bg_blend_color_dodge: &'static str,
bg_blend_darken: &'static str,
bg_blend_difference: &'static str,
bg_blend_exclusion: &'static str,
bg_blend_hard_light: &'static str,
bg_blend_hue: &'static str,
bg_blend_lighten: &'static str,
bg_blend_luminosity: &'static str,
bg_blend_multiply: &'static str,
bg_blend_normal: &'static str,
bg_blend_overlay: &'static str,
bg_blend_saturation: &'static str,
bg_blend_screen: &'static str,
bg_blend_soft_light: &'static str,
mix_blend_color: &'static str,
mix_blend_color_burn: &'static str,
mix_blend_color_dodge: &'static str,
mix_blend_darken: &'static str,
mix_blend_difference: &'static str,
mix_blend_exclusion: &'static str,
mix_blend_hard_light: &'static str,
mix_blend_hue: &'static str,
mix_blend_lighten: &'static str,
mix_blend_luminosity: &'static str,
mix_blend_multiply: &'static str,
mix_blend_normal: &'static str,
mix_blend_overlay: &'static str,
mix_blend_saturation: &'static str,
mix_blend_screen: &'static str,
mix_blend_soft_light: &'static str,
opacity_0: &'static str,
opacity_10: &'static str,
opacity_100: &'static str,
opacity_20: &'static str,
opacity_25: &'static str,
opacity_30: &'static str,
opacity_40: &'static str,
opacity_5: &'static str,
opacity_50: &'static str,
opacity_60: &'static str,
opacity_70: &'static str,
opacity_75: &'static str,
opacity_80: &'static str,
opacity_90: &'static str,
opacity_95: &'static str,
shadow: &'static str,
shadow_2xl: &'static str,
shadow_amber_100: &'static str,
shadow_amber_200: &'static str,
shadow_amber_300: &'static str,
shadow_amber_400: &'static str,
shadow_amber_50: &'static str,
shadow_amber_500: &'static str,
shadow_amber_600: &'static str,
shadow_amber_700: &'static str,
shadow_amber_800: &'static str,
shadow_amber_900: &'static str,
shadow_black: &'static str,
shadow_blue_100: &'static str,
shadow_blue_200: &'static str,
shadow_blue_300: &'static str,
shadow_blue_400: &'static str,
shadow_blue_50: &'static str,
shadow_blue_500: &'static str,
shadow_blue_600: &'static str,
shadow_blue_700: &'static str,
shadow_blue_800: &'static str,
shadow_blue_900: &'static str,
shadow_current: &'static str,
shadow_cyan_100: &'static str,
shadow_cyan_200: &'static str,
shadow_cyan_300: &'static str,
shadow_cyan_400: &'static str,
shadow_cyan_50: &'static str,
shadow_cyan_500: &'static str,
shadow_cyan_600: &'static str,
shadow_cyan_700: &'static str,
shadow_cyan_800: &'static str,
shadow_cyan_900: &'static str,
shadow_emerald_100: &'static str,
shadow_emerald_200: &'static str,
shadow_emerald_300: &'static str,
shadow_emerald_400: &'static str,
shadow_emerald_50: &'static str,
shadow_emerald_500: &'static str,
shadow_emerald_600: &'static str,
shadow_emerald_700: &'static str,
shadow_emerald_800: &'static str,
shadow_emerald_900: &'static str,
shadow_fuchsia_100: &'static str,
shadow_fuchsia_200: &'static str,
shadow_fuchsia_300: &'static str,
shadow_fuchsia_400: &'static str,
shadow_fuchsia_50: &'static str,
shadow_fuchsia_500: &'static str,
shadow_fuchsia_600: &'static str,
shadow_fuchsia_700: &'static str,
shadow_fuchsia_800: &'static str,
shadow_fuchsia_900: &'static str,
shadow_gray_100: &'static str,
shadow_gray_200: &'static str,
shadow_gray_300: &'static str,
shadow_gray_400: &'static str,
shadow_gray_50: &'static str,
shadow_gray_500: &'static str,
shadow_gray_600: &'static str,
shadow_gray_700: &'static str,
shadow_gray_800: &'static str,
shadow_gray_900: &'static str,
shadow_green_100: &'static str,
shadow_green_200: &'static str,
shadow_green_300: &'static str,
shadow_green_400: &'static str,
shadow_green_50: &'static str,
shadow_green_500: &'static str,
shadow_green_600: &'static str,
shadow_green_700: &'static str,
shadow_green_800: &'static str,
shadow_green_900: &'static str,
shadow_indigo_100: &'static str,
shadow_indigo_200: &'static str,
shadow_indigo_300: &'static str,
shadow_indigo_400: &'static str,
shadow_indigo_50: &'static str,
shadow_indigo_500: &'static str,
shadow_indigo_600: &'static str,
shadow_indigo_700: &'static str,
shadow_indigo_800: &'static str,
shadow_indigo_900: &'static str,
shadow_inherit: &'static str,
shadow_inner: &'static str,
shadow_lg: &'static str,
shadow_lime_100: &'static str,
shadow_lime_200: &'static str,
shadow_lime_300: &'static str,
shadow_lime_400: &'static str,
shadow_lime_50: &'static str,
shadow_lime_500: &'static str,
shadow_lime_600: &'static str,
shadow_lime_700: &'static str,
shadow_lime_800: &'static str,
shadow_lime_900: &'static str,
shadow_md: &'static str,
shadow_neutral_100: &'static str,
shadow_neutral_200: &'static str,
shadow_neutral_300: &'static str,
shadow_neutral_400: &'static str,
shadow_neutral_50: &'static str,
shadow_neutral_500: &'static str,
shadow_neutral_600: &'static str,
shadow_neutral_700: &'static str,
shadow_neutral_800: &'static str,
shadow_neutral_900: &'static str,
shadow_none: &'static str,
shadow_orange_100: &'static str,
shadow_orange_200: &'static str,
shadow_orange_300: &'static str,
shadow_orange_400: &'static str,
shadow_orange_50: &'static str,
shadow_orange_500: &'static str,
shadow_orange_600: &'static str,
shadow_orange_700: &'static str,
shadow_orange_800: &'static str,
shadow_orange_900: &'static str,
shadow_pink_100: &'static str,
shadow_pink_200: &'static str,
shadow_pink_300: &'static str,
shadow_pink_400: &'static str,
shadow_pink_50: &'static str,
shadow_pink_500: &'static str,
shadow_pink_600: &'static str,
shadow_pink_700: &'static str,
shadow_pink_800: &'static str,
shadow_pink_900: &'static str,
shadow_purple_100: &'static str,
shadow_purple_200: &'static str,
shadow_purple_300: &'static str,
shadow_purple_400: &'static str,
shadow_purple_50: &'static str,
shadow_purple_500: &'static str,
shadow_purple_600: &'static str,
shadow_purple_700: &'static str,
shadow_purple_800: &'static str,
shadow_purple_900: &'static str,
shadow_red_100: &'static str,
shadow_red_200: &'static str,
shadow_red_300: &'static str,
shadow_red_400: &'static str,
shadow_red_50: &'static str,
shadow_red_500: &'static str,
shadow_red_600: &'static str,
shadow_red_700: &'static str,
shadow_red_800: &'static str,
shadow_red_900: &'static str,
shadow_rose_100: &'static str,
shadow_rose_200: &'static str,
shadow_rose_300: &'static str,
shadow_rose_400: &'static str,
shadow_rose_50: &'static str,
shadow_rose_500: &'static str,
shadow_rose_600: &'static str,
shadow_rose_700: &'static str,
shadow_rose_800: &'static str,
shadow_rose_900: &'static str,
shadow_sky_100: &'static str,
shadow_sky_200: &'static str,
shadow_sky_300: &'static str,
shadow_sky_400: &'static str,
shadow_sky_50: &'static str,
shadow_sky_500: &'static str,
shadow_sky_600: &'static str,
shadow_sky_700: &'static str,
shadow_sky_800: &'static str,
shadow_sky_900: &'static str,
shadow_slate_100: &'static str,
shadow_slate_200: &'static str,
shadow_slate_300: &'static str,
shadow_slate_400: &'static str,
shadow_slate_50: &'static str,
shadow_slate_500: &'static str,
shadow_slate_600: &'static str,
shadow_slate_700: &'static str,
shadow_slate_800: &'static str,
shadow_slate_900: &'static str,
shadow_sm: &'static str,
shadow_stone_100: &'static str,
shadow_stone_200: &'static str,
shadow_stone_300: &'static str,
shadow_stone_400: &'static str,
shadow_stone_50: &'static str,
shadow_stone_500: &'static str,
shadow_stone_600: &'static str,
shadow_stone_700: &'static str,
shadow_stone_800: &'static str,
shadow_stone_900: &'static str,
shadow_teal_100: &'static str,
shadow_teal_200: &'static str,
shadow_teal_300: &'static str,
shadow_teal_400: &'static str,
shadow_teal_50: &'static str,
shadow_teal_500: &'static str,
shadow_teal_600: &'static str,
shadow_teal_700: &'static str,
shadow_teal_800: &'static str,
shadow_teal_900: &'static str,
shadow_transparent: &'static str,
shadow_violet_100: &'static str,
shadow_violet_200: &'static str,
shadow_violet_300: &'static str,
shadow_violet_400: &'static str,
shadow_violet_50: &'static str,
shadow_violet_500: &'static str,
shadow_violet_600: &'static str,
shadow_violet_700: &'static str,
shadow_violet_800: &'static str,
shadow_violet_900: &'static str,
shadow_white: &'static str,
shadow_xl: &'static str,
shadow_yellow_100: &'static str,
shadow_yellow_200: &'static str,
shadow_yellow_300: &'static str,
shadow_yellow_400: &'static str,
shadow_yellow_50: &'static str,
shadow_yellow_500: &'static str,
shadow_yellow_600: &'static str,
shadow_yellow_700: &'static str,
shadow_yellow_800: &'static str,
shadow_yellow_900: &'static str,
shadow_zinc_100: &'static str,
shadow_zinc_200: &'static str,
shadow_zinc_300: &'static str,
shadow_zinc_400: &'static str,
shadow_zinc_50: &'static str,
shadow_zinc_500: &'static str,
shadow_zinc_600: &'static str,
shadow_zinc_700: &'static str,
shadow_zinc_800: &'static str,
shadow_zinc_900: &'static str,
}
pub struct Filters {
backdrop_blur: &'static str,
backdrop_blur_0: &'static str,
backdrop_blur_2xl: &'static str,
backdrop_blur_3xl: &'static str,
backdrop_blur_lg: &'static str,
backdrop_blur_md: &'static str,
backdrop_blur_none: &'static str,
backdrop_blur_sm: &'static str,
backdrop_blur_xl: &'static str,
backdrop_brightness_0: &'static str,
backdrop_brightness_100: &'static str,
backdrop_brightness_105: &'static str,
backdrop_brightness_110: &'static str,
backdrop_brightness_125: &'static str,
backdrop_brightness_150: &'static str,
backdrop_brightness_200: &'static str,
backdrop_brightness_50: &'static str,
backdrop_brightness_75: &'static str,
backdrop_brightness_90: &'static str,
backdrop_brightness_95: &'static str,
backdrop_contrast_0: &'static str,
backdrop_contrast_100: &'static str,
backdrop_contrast_125: &'static str,
backdrop_contrast_150: &'static str,
backdrop_contrast_200: &'static str,
backdrop_contrast_50: &'static str,
backdrop_contrast_75: &'static str,
backdrop_filter: &'static str,
backdrop_filter_none: &'static str,
backdrop_grayscale: &'static str,
backdrop_grayscale_0: &'static str,
backdrop_hue_rotate_0: &'static str,
backdrop_hue_rotate_15: &'static str,
backdrop_hue_rotate_180: &'static str,
backdrop_hue_rotate_30: &'static str,
backdrop_hue_rotate_60: &'static str,
backdrop_hue_rotate_90: &'static str,
backdrop_invert: &'static str,
backdrop_invert_0: &'static str,
backdrop_opacity_0: &'static str,
backdrop_opacity_10: &'static str,
backdrop_opacity_100: &'static str,
backdrop_opacity_20: &'static str,
backdrop_opacity_25: &'static str,
backdrop_opacity_30: &'static str,
backdrop_opacity_40: &'static str,
backdrop_opacity_5: &'static str,
backdrop_opacity_50: &'static str,
backdrop_opacity_60: &'static str,
backdrop_opacity_70: &'static str,
backdrop_opacity_75: &'static str,
backdrop_opacity_80: &'static str,
backdrop_opacity_90: &'static str,
backdrop_opacity_95: &'static str,
backdrop_saturate_0: &'static str,
backdrop_saturate_100: &'static str,
backdrop_saturate_150: &'static str,
backdrop_saturate_200: &'static str,
backdrop_saturate_50: &'static str,
backdrop_sepia: &'static str,
backdrop_sepia_0: &'static str,
blur: &'static str,
blur_0: &'static str,
blur_2xl: &'static str,
blur_3xl: &'static str,
blur_lg: &'static str,
blur_md: &'static str,
blur_none: &'static str,
blur_sm: &'static str,
blur_xl: &'static str,
brightness_0: &'static str,
brightness_100: &'static str,
brightness_105: &'static str,
brightness_110: &'static str,
brightness_125: &'static str,
brightness_150: &'static str,
brightness_200: &'static str,
brightness_50: &'static str,
brightness_75: &'static str,
brightness_90: &'static str,
brightness_95: &'static str,
contrast_0: &'static str,
contrast_100: &'static str,
contrast_125: &'static str,
contrast_150: &'static str,
contrast_200: &'static str,
contrast_50: &'static str,
contrast_75: &'static str,
drop_shadow: &'static str,
drop_shadow_2xl: &'static str,
drop_shadow_lg: &'static str,
drop_shadow_md: &'static str,
drop_shadow_none: &'static str,
drop_shadow_sm: &'static str,
drop_shadow_xl: &'static str,
filter: &'static str,
filter_none: &'static str,
grayscale: &'static str,
grayscale_0: &'static str,
hue_rotate_0: &'static str,
hue_rotate_15: &'static str,
hue_rotate_180: &'static str,
hue_rotate_30: &'static str,
hue_rotate_60: &'static str,
hue_rotate_90: &'static str,
invert: &'static str,
invert_0: &'static str,
saturate_0: &'static str,
saturate_100: &'static str,
saturate_150: &'static str,
saturate_200: &'static str,
saturate_50: &'static str,
sepia: &'static str,
sepia_0: &'static str,
}
pub struct FlexAndGrid {
auto_cols_auto: &'static str,
auto_cols_fr: &'static str,
auto_cols_max: &'static str,
auto_cols_min: &'static str,
auto_rows_auto: &'static str,
auto_rows_fr: &'static str,
auto_rows_max: &'static str,
auto_rows_min: &'static str,
basis_0: &'static str,
basis_0_p_5: &'static str,
basis_1: &'static str,
basis_10: &'static str,
basis_10_of_12: &'static str,
basis_11: &'static str,
basis_11_of_12: &'static str,
basis_12: &'static str,
basis_14: &'static str,
basis_16: &'static str,
basis_1_of_12: &'static str,
basis_1_of_2: &'static str,
basis_1_of_3: &'static str,
basis_1_of_4: &'static str,
basis_1_of_5: &'static str,
basis_1_of_6: &'static str,
basis_1_p_5: &'static str,
basis_2: &'static str,
basis_20: &'static str,
basis_24: &'static str,
basis_28: &'static str,
basis_2_of_12: &'static str,
basis_2_of_3: &'static str,
basis_2_of_4: &'static str,
basis_2_of_5: &'static str,
basis_2_of_6: &'static str,
basis_2_p_5: &'static str,
basis_3: &'static str,
basis_32: &'static str,
basis_36: &'static str,
basis_3_of_12: &'static str,
basis_3_of_4: &'static str,
basis_3_of_5: &'static str,
basis_3_of_6: &'static str,
basis_3_p_5: &'static str,
basis_4: &'static str,
basis_40: &'static str,
basis_44: &'static str,
basis_48: &'static str,
basis_4_of_12: &'static str,
basis_4_of_5: &'static str,
basis_4_of_6: &'static str,
basis_5: &'static str,
basis_52: &'static str,
basis_56: &'static str,
basis_5_of_12: &'static str,
basis_5_of_6: &'static str,
basis_6: &'static str,
basis_60: &'static str,
basis_64: &'static str,
basis_6_of_12: &'static str,
basis_7: &'static str,
basis_72: &'static str,
basis_7_of_12: &'static str,
basis_8: &'static str,
basis_80: &'static str,
basis_8_of_12: &'static str,
basis_9: &'static str,
basis_96: &'static str,
basis_9_of_12: &'static str,
basis_auto: &'static str,
basis_full: &'static str,
basis_px: &'static str,
col_auto: &'static str,
col_end_1: &'static str,
col_end_10: &'static str,
col_end_11: &'static str,
col_end_12: &'static str,
col_end_13: &'static str,
col_end_2: &'static str,
col_end_3: &'static str,
col_end_4: &'static str,
col_end_5: &'static str,
col_end_6: &'static str,
col_end_7: &'static str,
col_end_8: &'static str,
col_end_9: &'static str,
col_end_auto: &'static str,
col_span_1: &'static str,
col_span_10: &'static str,
col_span_11: &'static str,
col_span_12: &'static str,
col_span_2: &'static str,
col_span_3: &'static str,
col_span_4: &'static str,
col_span_5: &'static str,
col_span_6: &'static str,
col_span_7: &'static str,
col_span_8: &'static str,
col_span_9: &'static str,
col_span_full: &'static str,
col_start_1: &'static str,
col_start_10: &'static str,
col_start_11: &'static str,
col_start_12: &'static str,
col_start_13: &'static str,
col_start_2: &'static str,
col_start_3: &'static str,
col_start_4: &'static str,
col_start_5: &'static str,
col_start_6: &'static str,
col_start_7: &'static str,
col_start_8: &'static str,
col_start_9: &'static str,
col_start_auto: &'static str,
content_around: &'static str,
content_between: &'static str,
content_center: &'static str,
content_end: &'static str,
content_evenly: &'static str,
content_start: &'static str,
flex_1: &'static str,
flex_auto: &'static str,
flex_col: &'static str,
flex_col_reverse: &'static str,
flex_grow: &'static str,
flex_grow_0: &'static str,
flex_initial: &'static str,
flex_none: &'static str,
flex_nowrap: &'static str,
flex_row: &'static str,
flex_row_reverse: &'static str,
flex_shrink: &'static str,
flex_shrink_0: &'static str,
flex_wrap: &'static str,
flex_wrap_reverse: &'static str,
gap_0: &'static str,
gap_0_p_5: &'static str,
gap_1: &'static str,
gap_10: &'static str,
gap_11: &'static str,
gap_12: &'static str,
gap_14: &'static str,
gap_16: &'static str,
gap_1_p_5: &'static str,
gap_2: &'static str,
gap_20: &'static str,
gap_24: &'static str,
gap_28: &'static str,
gap_2_p_5: &'static str,
gap_3: &'static str,
gap_32: &'static str,
gap_36: &'static str,
gap_3_p_5: &'static str,
gap_4: &'static str,
gap_40: &'static str,
gap_44: &'static str,
gap_48: &'static str,
gap_5: &'static str,
gap_52: &'static str,
gap_56: &'static str,
gap_6: &'static str,
gap_60: &'static str,
gap_64: &'static str,
gap_7: &'static str,
gap_72: &'static str,
gap_8: &'static str,
gap_80: &'static str,
gap_9: &'static str,
gap_96: &'static str,
gap_px: &'static str,
gap_x_0: &'static str,
gap_x_0_p_5: &'static str,
gap_x_1: &'static str,
gap_x_10: &'static str,
gap_x_11: &'static str,
gap_x_12: &'static str,
gap_x_14: &'static str,
gap_x_16: &'static str,
gap_x_1_p_5: &'static str,
gap_x_2: &'static str,
gap_x_20: &'static str,
gap_x_24: &'static str,
gap_x_28: &'static str,
gap_x_2_p_5: &'static str,
gap_x_3: &'static str,
gap_x_32: &'static str,
gap_x_36: &'static str,
gap_x_3_p_5: &'static str,
gap_x_4: &'static str,
gap_x_40: &'static str,
gap_x_44: &'static str,
gap_x_48: &'static str,
gap_x_5: &'static str,
gap_x_52: &'static str,
gap_x_56: &'static str,
gap_x_6: &'static str,
gap_x_60: &'static str,
gap_x_64: &'static str,
gap_x_7: &'static str,
gap_x_72: &'static str,
gap_x_8: &'static str,
gap_x_80: &'static str,
gap_x_9: &'static str,
gap_x_96: &'static str,
gap_x_px: &'static str,
gap_y_0: &'static str,
gap_y_0_p_5: &'static str,
gap_y_1: &'static str,
gap_y_10: &'static str,
gap_y_11: &'static str,
gap_y_12: &'static str,
gap_y_14: &'static str,
gap_y_16: &'static str,
gap_y_1_p_5: &'static str,
gap_y_2: &'static str,
gap_y_20: &'static str,
gap_y_24: &'static str,
gap_y_28: &'static str,
gap_y_2_p_5: &'static str,
gap_y_3: &'static str,
gap_y_32: &'static str,
gap_y_36: &'static str,
gap_y_3_p_5: &'static str,
gap_y_4: &'static str,
gap_y_40: &'static str,
gap_y_44: &'static str,
gap_y_48: &'static str,
gap_y_5: &'static str,
gap_y_52: &'static str,
gap_y_56: &'static str,
gap_y_6: &'static str,
gap_y_60: &'static str,
gap_y_64: &'static str,
gap_y_7: &'static str,
gap_y_72: &'static str,
gap_y_8: &'static str,
gap_y_80: &'static str,
gap_y_9: &'static str,
gap_y_96: &'static str,
gap_y_px: &'static str,
grid_cols_1: &'static str,
grid_cols_10: &'static str,
grid_cols_11: &'static str,
grid_cols_12: &'static str,
grid_cols_2: &'static str,
grid_cols_3: &'static str,
grid_cols_4: &'static str,
grid_cols_5: &'static str,
grid_cols_6: &'static str,
grid_cols_7: &'static str,
grid_cols_8: &'static str,
grid_cols_9: &'static str,
grid_cols_none: &'static str,
grid_flow_col: &'static str,
grid_flow_col_dense: &'static str,
grid_flow_row: &'static str,
grid_flow_row_dense: &'static str,
grid_rows_1: &'static str,
grid_rows_2: &'static str,
grid_rows_3: &'static str,
grid_rows_4: &'static str,
grid_rows_5: &'static str,
grid_rows_6: &'static str,
grid_rows_none: &'static str,
grow: &'static str,
grow_0: &'static str,
items_baseline: &'static str,
items_center: &'static str,
items_end: &'static str,
items_start: &'static str,
items_stretch: &'static str,
justify_around: &'static str,
justify_between: &'static str,
justify_center: &'static str,
justify_end: &'static str,
justify_evenly: &'static str,
justify_items_center: &'static str,
justify_items_end: &'static str,
justify_items_start: &'static str,
justify_items_stretch: &'static str,
justify_self_auto: &'static str,
justify_self_center: &'static str,
justify_self_end: &'static str,
justify_self_start: &'static str,
justify_self_stretch: &'static str,
justify_start: &'static str,
order_1: &'static str,
order_10: &'static str,
order_11: &'static str,
order_12: &'static str,
order_2: &'static str,
order_3: &'static str,
order_4: &'static str,
order_5: &'static str,
order_6: &'static str,
order_7: &'static str,
order_8: &'static str,
order_9: &'static str,
order_first: &'static str,
order_last: &'static str,
order_none: &'static str,
place_content_around: &'static str,
place_content_between: &'static str,
place_content_center: &'static str,
place_content_end: &'static str,
place_content_evenly: &'static str,
place_content_start: &'static str,
place_content_stretch: &'static str,
place_items_center: &'static str,
place_items_end: &'static str,
place_items_start: &'static str,
place_items_stretch: &'static str,
place_self_auto: &'static str,
place_self_center: &'static str,
place_self_end: &'static str,
place_self_start: &'static str,
place_self_stretch: &'static str,
row_auto: &'static str,
row_end_1: &'static str,
row_end_2: &'static str,
row_end_3: &'static str,
row_end_4: &'static str,
row_end_5: &'static str,
row_end_6: &'static str,
row_end_7: &'static str,
row_end_auto: &'static str,
row_span_1: &'static str,
row_span_2: &'static str,
row_span_3: &'static str,
row_span_4: &'static str,
row_span_5: &'static str,
row_span_6: &'static str,
row_span_full: &'static str,
row_start_1: &'static str,
row_start_2: &'static str,
row_start_3: &'static str,
row_start_4: &'static str,
row_start_5: &'static str,
row_start_6: &'static str,
row_start_7: &'static str,
row_start_auto: &'static str,
self_auto: &'static str,
self_baseline: &'static str,
self_center: &'static str,
self_end: &'static str,
self_start: &'static str,
self_stretch: &'static str,
shrink: &'static str,
shrink_0: &'static str,
}
pub struct Interactivity {
accent_amber_100: &'static str,
accent_amber_200: &'static str,
accent_amber_300: &'static str,
accent_amber_400: &'static str,
accent_amber_50: &'static str,
accent_amber_500: &'static str,
accent_amber_600: &'static str,
accent_amber_700: &'static str,
accent_amber_800: &'static str,
accent_amber_900: &'static str,
accent_auto: &'static str,
accent_black: &'static str,
accent_blue_100: &'static str,
accent_blue_200: &'static str,
accent_blue_300: &'static str,
accent_blue_400: &'static str,
accent_blue_50: &'static str,
accent_blue_500: &'static str,
accent_blue_600: &'static str,
accent_blue_700: &'static str,
accent_blue_800: &'static str,
accent_blue_900: &'static str,
accent_current: &'static str,
accent_cyan_100: &'static str,
accent_cyan_200: &'static str,
accent_cyan_300: &'static str,
accent_cyan_400: &'static str,
accent_cyan_50: &'static str,
accent_cyan_500: &'static str,
accent_cyan_600: &'static str,
accent_cyan_700: &'static str,
accent_cyan_800: &'static str,
accent_cyan_900: &'static str,
accent_emerald_100: &'static str,
accent_emerald_200: &'static str,
accent_emerald_300: &'static str,
accent_emerald_400: &'static str,
accent_emerald_50: &'static str,
accent_emerald_500: &'static str,
accent_emerald_600: &'static str,
accent_emerald_700: &'static str,
accent_emerald_800: &'static str,
accent_emerald_900: &'static str,
accent_fuchsia_100: &'static str,
accent_fuchsia_200: &'static str,
accent_fuchsia_300: &'static str,
accent_fuchsia_400: &'static str,
accent_fuchsia_50: &'static str,
accent_fuchsia_500: &'static str,
accent_fuchsia_600: &'static str,
accent_fuchsia_700: &'static str,
accent_fuchsia_800: &'static str,
accent_fuchsia_900: &'static str,
accent_gray_100: &'static str,
accent_gray_200: &'static str,
accent_gray_300: &'static str,
accent_gray_400: &'static str,
accent_gray_50: &'static str,
accent_gray_500: &'static str,
accent_gray_600: &'static str,
accent_gray_700: &'static str,
accent_gray_800: &'static str,
accent_gray_900: &'static str,
accent_green_100: &'static str,
accent_green_200: &'static str,
accent_green_300: &'static str,
accent_green_400: &'static str,
accent_green_50: &'static str,
accent_green_500: &'static str,
accent_green_600: &'static str,
accent_green_700: &'static str,
accent_green_800: &'static str,
accent_green_900: &'static str,
accent_indigo_100: &'static str,
accent_indigo_200: &'static str,
accent_indigo_300: &'static str,
accent_indigo_400: &'static str,
accent_indigo_50: &'static str,
accent_indigo_500: &'static str,
accent_indigo_600: &'static str,
accent_indigo_700: &'static str,
accent_indigo_800: &'static str,
accent_indigo_900: &'static str,
accent_inherit: &'static str,
accent_lime_100: &'static str,
accent_lime_200: &'static str,
accent_lime_300: &'static str,
accent_lime_400: &'static str,
accent_lime_50: &'static str,
accent_lime_500: &'static str,
accent_lime_600: &'static str,
accent_lime_700: &'static str,
accent_lime_800: &'static str,
accent_lime_900: &'static str,
accent_neutral_100: &'static str,
accent_neutral_200: &'static str,
accent_neutral_300: &'static str,
accent_neutral_400: &'static str,
accent_neutral_50: &'static str,
accent_neutral_500: &'static str,
accent_neutral_600: &'static str,
accent_neutral_700: &'static str,
accent_neutral_800: &'static str,
accent_neutral_900: &'static str,
accent_orange_100: &'static str,
accent_orange_200: &'static str,
accent_orange_300: &'static str,
accent_orange_400: &'static str,
accent_orange_50: &'static str,
accent_orange_500: &'static str,
accent_orange_600: &'static str,
accent_orange_700: &'static str,
accent_orange_800: &'static str,
accent_orange_900: &'static str,
accent_pink_100: &'static str,
accent_pink_200: &'static str,
accent_pink_300: &'static str,
accent_pink_400: &'static str,
accent_pink_50: &'static str,
accent_pink_500: &'static str,
accent_pink_600: &'static str,
accent_pink_700: &'static str,
accent_pink_800: &'static str,
accent_pink_900: &'static str,
accent_purple_100: &'static str,
accent_purple_200: &'static str,
accent_purple_300: &'static str,
accent_purple_400: &'static str,
accent_purple_50: &'static str,
accent_purple_500: &'static str,
accent_purple_600: &'static str,
accent_purple_700: &'static str,
accent_purple_800: &'static str,
accent_purple_900: &'static str,
accent_red_100: &'static str,
accent_red_200: &'static str,
accent_red_300: &'static str,
accent_red_400: &'static str,
accent_red_50: &'static str,
accent_red_500: &'static str,
accent_red_600: &'static str,
accent_red_700: &'static str,
accent_red_800: &'static str,
accent_red_900: &'static str,
accent_rose_100: &'static str,
accent_rose_200: &'static str,
accent_rose_300: &'static str,
accent_rose_400: &'static str,
accent_rose_50: &'static str,
accent_rose_500: &'static str,
accent_rose_600: &'static str,
accent_rose_700: &'static str,
accent_rose_800: &'static str,
accent_rose_900: &'static str,
accent_sky_100: &'static str,
accent_sky_200: &'static str,
accent_sky_300: &'static str,
accent_sky_400: &'static str,
accent_sky_50: &'static str,
accent_sky_500: &'static str,
accent_sky_600: &'static str,
accent_sky_700: &'static str,
accent_sky_800: &'static str,
accent_sky_900: &'static str,
accent_slate_100: &'static str,
accent_slate_200: &'static str,
accent_slate_300: &'static str,
accent_slate_400: &'static str,
accent_slate_50: &'static str,
accent_slate_500: &'static str,
accent_slate_600: &'static str,
accent_slate_700: &'static str,
accent_slate_800: &'static str,
accent_slate_900: &'static str,
accent_stone_100: &'static str,
accent_stone_200: &'static str,
accent_stone_300: &'static str,
accent_stone_400: &'static str,
accent_stone_50: &'static str,
accent_stone_500: &'static str,
accent_stone_600: &'static str,
accent_stone_700: &'static str,
accent_stone_800: &'static str,
accent_stone_900: &'static str,
accent_teal_100: &'static str,
accent_teal_200: &'static str,
accent_teal_300: &'static str,
accent_teal_400: &'static str,
accent_teal_50: &'static str,
accent_teal_500: &'static str,
accent_teal_600: &'static str,
accent_teal_700: &'static str,
accent_teal_800: &'static str,
accent_teal_900: &'static str,
accent_transparent: &'static str,
accent_violet_100: &'static str,
accent_violet_200: &'static str,
accent_violet_300: &'static str,
accent_violet_400: &'static str,
accent_violet_50: &'static str,
accent_violet_500: &'static str,
accent_violet_600: &'static str,
accent_violet_700: &'static str,
accent_violet_800: &'static str,
accent_violet_900: &'static str,
accent_white: &'static str,
accent_yellow_100: &'static str,
accent_yellow_200: &'static str,
accent_yellow_300: &'static str,
accent_yellow_400: &'static str,
accent_yellow_50: &'static str,
accent_yellow_500: &'static str,
accent_yellow_600: &'static str,
accent_yellow_700: &'static str,
accent_yellow_800: &'static str,
accent_yellow_900: &'static str,
accent_zinc_100: &'static str,
accent_zinc_200: &'static str,
accent_zinc_300: &'static str,
accent_zinc_400: &'static str,
accent_zinc_50: &'static str,
accent_zinc_500: &'static str,
accent_zinc_600: &'static str,
accent_zinc_700: &'static str,
accent_zinc_800: &'static str,
accent_zinc_900: &'static str,
appearance_none: &'static str,
caret_amber_100: &'static str,
caret_amber_200: &'static str,
caret_amber_300: &'static str,
caret_amber_400: &'static str,
caret_amber_50: &'static str,
caret_amber_500: &'static str,
caret_amber_600: &'static str,
caret_amber_700: &'static str,
caret_amber_800: &'static str,
caret_amber_900: &'static str,
caret_black: &'static str,
caret_blue_100: &'static str,
caret_blue_200: &'static str,
caret_blue_300: &'static str,
caret_blue_400: &'static str,
caret_blue_50: &'static str,
caret_blue_500: &'static str,
caret_blue_600: &'static str,
caret_blue_700: &'static str,
caret_blue_800: &'static str,
caret_blue_900: &'static str,
caret_current: &'static str,
caret_cyan_100: &'static str,
caret_cyan_200: &'static str,
caret_cyan_300: &'static str,
caret_cyan_400: &'static str,
caret_cyan_50: &'static str,
caret_cyan_500: &'static str,
caret_cyan_600: &'static str,
caret_cyan_700: &'static str,
caret_cyan_800: &'static str,
caret_cyan_900: &'static str,
caret_emerald_100: &'static str,
caret_emerald_200: &'static str,
caret_emerald_300: &'static str,
caret_emerald_400: &'static str,
caret_emerald_50: &'static str,
caret_emerald_500: &'static str,
caret_emerald_600: &'static str,
caret_emerald_700: &'static str,
caret_emerald_800: &'static str,
caret_emerald_900: &'static str,
caret_fuchsia_100: &'static str,
caret_fuchsia_200: &'static str,
caret_fuchsia_300: &'static str,
caret_fuchsia_400: &'static str,
caret_fuchsia_50: &'static str,
caret_fuchsia_500: &'static str,
caret_fuchsia_600: &'static str,
caret_fuchsia_700: &'static str,
caret_fuchsia_800: &'static str,
caret_fuchsia_900: &'static str,
caret_gray_100: &'static str,
caret_gray_200: &'static str,
caret_gray_300: &'static str,
caret_gray_400: &'static str,
caret_gray_50: &'static str,
caret_gray_500: &'static str,
caret_gray_600: &'static str,
caret_gray_700: &'static str,
caret_gray_800: &'static str,
caret_gray_900: &'static str,
caret_green_100: &'static str,
caret_green_200: &'static str,
caret_green_300: &'static str,
caret_green_400: &'static str,
caret_green_50: &'static str,
caret_green_500: &'static str,
caret_green_600: &'static str,
caret_green_700: &'static str,
caret_green_800: &'static str,
caret_green_900: &'static str,
caret_indigo_100: &'static str,
caret_indigo_200: &'static str,
caret_indigo_300: &'static str,
caret_indigo_400: &'static str,
caret_indigo_50: &'static str,
caret_indigo_500: &'static str,
caret_indigo_600: &'static str,
caret_indigo_700: &'static str,
caret_indigo_800: &'static str,
caret_indigo_900: &'static str,
caret_inherit: &'static str,
caret_lime_100: &'static str,
caret_lime_200: &'static str,
caret_lime_300: &'static str,
caret_lime_400: &'static str,
caret_lime_50: &'static str,
caret_lime_500: &'static str,
caret_lime_600: &'static str,
caret_lime_700: &'static str,
caret_lime_800: &'static str,
caret_lime_900: &'static str,
caret_neutral_100: &'static str,
caret_neutral_200: &'static str,
caret_neutral_300: &'static str,
caret_neutral_400: &'static str,
caret_neutral_50: &'static str,
caret_neutral_500: &'static str,
caret_neutral_600: &'static str,
caret_neutral_700: &'static str,
caret_neutral_800: &'static str,
caret_neutral_900: &'static str,
caret_orange_100: &'static str,
caret_orange_200: &'static str,
caret_orange_300: &'static str,
caret_orange_400: &'static str,
caret_orange_50: &'static str,
caret_orange_500: &'static str,
caret_orange_600: &'static str,
caret_orange_700: &'static str,
caret_orange_800: &'static str,
caret_orange_900: &'static str,
caret_pink_100: &'static str,
caret_pink_200: &'static str,
caret_pink_300: &'static str,
caret_pink_400: &'static str,
caret_pink_50: &'static str,
caret_pink_500: &'static str,
caret_pink_600: &'static str,
caret_pink_700: &'static str,
caret_pink_800: &'static str,
caret_pink_900: &'static str,
caret_purple_100: &'static str,
caret_purple_200: &'static str,
caret_purple_300: &'static str,
caret_purple_400: &'static str,
caret_purple_50: &'static str,
caret_purple_500: &'static str,
caret_purple_600: &'static str,
caret_purple_700: &'static str,
caret_purple_800: &'static str,
caret_purple_900: &'static str,
caret_red_100: &'static str,
caret_red_200: &'static str,
caret_red_300: &'static str,
caret_red_400: &'static str,
caret_red_50: &'static str,
caret_red_500: &'static str,
caret_red_600: &'static str,
caret_red_700: &'static str,
caret_red_800: &'static str,
caret_red_900: &'static str,
caret_rose_100: &'static str,
caret_rose_200: &'static str,
caret_rose_300: &'static str,
caret_rose_400: &'static str,
caret_rose_50: &'static str,
caret_rose_500: &'static str,
caret_rose_600: &'static str,
caret_rose_700: &'static str,
caret_rose_800: &'static str,
caret_rose_900: &'static str,
caret_sky_100: &'static str,
caret_sky_200: &'static str,
caret_sky_300: &'static str,
caret_sky_400: &'static str,
caret_sky_50: &'static str,
caret_sky_500: &'static str,
caret_sky_600: &'static str,
caret_sky_700: &'static str,
caret_sky_800: &'static str,
caret_sky_900: &'static str,
caret_slate_100: &'static str,
caret_slate_200: &'static str,
caret_slate_300: &'static str,
caret_slate_400: &'static str,
caret_slate_50: &'static str,
caret_slate_500: &'static str,
caret_slate_600: &'static str,
caret_slate_700: &'static str,
caret_slate_800: &'static str,
caret_slate_900: &'static str,
caret_stone_100: &'static str,
caret_stone_200: &'static str,
caret_stone_300: &'static str,
caret_stone_400: &'static str,
caret_stone_50: &'static str,
caret_stone_500: &'static str,
caret_stone_600: &'static str,
caret_stone_700: &'static str,
caret_stone_800: &'static str,
caret_stone_900: &'static str,
caret_teal_100: &'static str,
caret_teal_200: &'static str,
caret_teal_300: &'static str,
caret_teal_400: &'static str,
caret_teal_50: &'static str,
caret_teal_500: &'static str,
caret_teal_600: &'static str,
caret_teal_700: &'static str,
caret_teal_800: &'static str,
caret_teal_900: &'static str,
caret_transparent: &'static str,
caret_violet_100: &'static str,
caret_violet_200: &'static str,
caret_violet_300: &'static str,
caret_violet_400: &'static str,
caret_violet_50: &'static str,
caret_violet_500: &'static str,
caret_violet_600: &'static str,
caret_violet_700: &'static str,
caret_violet_800: &'static str,
caret_violet_900: &'static str,
caret_white: &'static str,
caret_yellow_100: &'static str,
caret_yellow_200: &'static str,
caret_yellow_300: &'static str,
caret_yellow_400: &'static str,
caret_yellow_50: &'static str,
caret_yellow_500: &'static str,
caret_yellow_600: &'static str,
caret_yellow_700: &'static str,
caret_yellow_800: &'static str,
caret_yellow_900: &'static str,
caret_zinc_100: &'static str,
caret_zinc_200: &'static str,
caret_zinc_300: &'static str,
caret_zinc_400: &'static str,
caret_zinc_50: &'static str,
caret_zinc_500: &'static str,
caret_zinc_600: &'static str,
caret_zinc_700: &'static str,
caret_zinc_800: &'static str,
caret_zinc_900: &'static str,
cursor_alias: &'static str,
cursor_all_scroll: &'static str,
cursor_auto: &'static str,
cursor_cell: &'static str,
cursor_col_resize: &'static str,
cursor_context_menu: &'static str,
cursor_copy: &'static str,
cursor_crosshair: &'static str,
cursor_default: &'static str,
cursor_e_resize: &'static str,
cursor_ew_resize: &'static str,
cursor_grab: &'static str,
cursor_grabbing: &'static str,
cursor_help: &'static str,
cursor_move: &'static str,
cursor_n_resize: &'static str,
cursor_ne_resize: &'static str,
cursor_nesw_resize: &'static str,
cursor_no_drop: &'static str,
cursor_none: &'static str,
cursor_not_allowed: &'static str,
cursor_ns_resize: &'static str,
cursor_nw_resize: &'static str,
cursor_nwse_resize: &'static str,
cursor_pointer: &'static str,
cursor_progress: &'static str,
cursor_row_resize: &'static str,
cursor_s_resize: &'static str,
cursor_se_resize: &'static str,
cursor_sw_resize: &'static str,
cursor_text: &'static str,
cursor_vertical_text: &'static str,
cursor_w_resize: &'static str,
cursor_wait: &'static str,
cursor_zoom_in: &'static str,
cursor_zoom_out: &'static str,
pointer_events_auto: &'static str,
pointer_events_none: &'static str,
resize: &'static str,
resize_none: &'static str,
resize_x: &'static str,
resize_y: &'static str,
scroll_auto: &'static str,
scroll_m_0: &'static str,
scroll_m_0_p_5: &'static str,
scroll_m_1: &'static str,
scroll_m_10: &'static str,
scroll_m_11: &'static str,
scroll_m_12: &'static str,
scroll_m_14: &'static str,
scroll_m_16: &'static str,
scroll_m_1_p_5: &'static str,
scroll_m_2: &'static str,
scroll_m_20: &'static str,
scroll_m_24: &'static str,
scroll_m_28: &'static str,
scroll_m_2_p_5: &'static str,
scroll_m_3: &'static str,
scroll_m_32: &'static str,
scroll_m_36: &'static str,
scroll_m_3_p_5: &'static str,
scroll_m_4: &'static str,
scroll_m_40: &'static str,
scroll_m_44: &'static str,
scroll_m_48: &'static str,
scroll_m_5: &'static str,
scroll_m_52: &'static str,
scroll_m_56: &'static str,
scroll_m_6: &'static str,
scroll_m_60: &'static str,
scroll_m_64: &'static str,
scroll_m_7: &'static str,
scroll_m_72: &'static str,
scroll_m_8: &'static str,
scroll_m_80: &'static str,
scroll_m_9: &'static str,
scroll_m_96: &'static str,
scroll_m_px: &'static str,
scroll_mb_0: &'static str,
scroll_mb_0_p_5: &'static str,
scroll_mb_1: &'static str,
scroll_mb_10: &'static str,
scroll_mb_11: &'static str,
scroll_mb_12: &'static str,
scroll_mb_14: &'static str,
scroll_mb_16: &'static str,
scroll_mb_1_p_5: &'static str,
scroll_mb_2: &'static str,
scroll_mb_20: &'static str,
scroll_mb_24: &'static str,
scroll_mb_28: &'static str,
scroll_mb_2_p_5: &'static str,
scroll_mb_3: &'static str,
scroll_mb_32: &'static str,
scroll_mb_36: &'static str,
scroll_mb_3_p_5: &'static str,
scroll_mb_4: &'static str,
scroll_mb_40: &'static str,
scroll_mb_44: &'static str,
scroll_mb_48: &'static str,
scroll_mb_5: &'static str,
scroll_mb_52: &'static str,
scroll_mb_56: &'static str,
scroll_mb_6: &'static str,
scroll_mb_60: &'static str,
scroll_mb_64: &'static str,
scroll_mb_7: &'static str,
scroll_mb_72: &'static str,
scroll_mb_8: &'static str,
scroll_mb_80: &'static str,
scroll_mb_9: &'static str,
scroll_mb_96: &'static str,
scroll_mb_px: &'static str,
scroll_ml_0: &'static str,
scroll_ml_0_p_5: &'static str,
scroll_ml_1: &'static str,
scroll_ml_10: &'static str,
scroll_ml_11: &'static str,
scroll_ml_12: &'static str,
scroll_ml_14: &'static str,
scroll_ml_16: &'static str,
scroll_ml_1_p_5: &'static str,
scroll_ml_2: &'static str,
scroll_ml_20: &'static str,
scroll_ml_24: &'static str,
scroll_ml_28: &'static str,
scroll_ml_2_p_5: &'static str,
scroll_ml_3: &'static str,
scroll_ml_32: &'static str,
scroll_ml_36: &'static str,
scroll_ml_3_p_5: &'static str,
scroll_ml_4: &'static str,
scroll_ml_40: &'static str,
scroll_ml_44: &'static str,
scroll_ml_48: &'static str,
scroll_ml_5: &'static str,
scroll_ml_52: &'static str,
scroll_ml_56: &'static str,
scroll_ml_6: &'static str,
scroll_ml_60: &'static str,
scroll_ml_64: &'static str,
scroll_ml_7: &'static str,
scroll_ml_72: &'static str,
scroll_ml_8: &'static str,
scroll_ml_80: &'static str,
scroll_ml_9: &'static str,
scroll_ml_96: &'static str,
scroll_ml_px: &'static str,
scroll_mr_0: &'static str,
scroll_mr_0_p_5: &'static str,
scroll_mr_1: &'static str,
scroll_mr_10: &'static str,
scroll_mr_11: &'static str,
scroll_mr_12: &'static str,
scroll_mr_14: &'static str,
scroll_mr_16: &'static str,
scroll_mr_1_p_5: &'static str,
scroll_mr_2: &'static str,
scroll_mr_20: &'static str,
scroll_mr_24: &'static str,
scroll_mr_28: &'static str,
scroll_mr_2_p_5: &'static str,
scroll_mr_3: &'static str,
scroll_mr_32: &'static str,
scroll_mr_36: &'static str,
scroll_mr_3_p_5: &'static str,
scroll_mr_4: &'static str,
scroll_mr_40: &'static str,
scroll_mr_44: &'static str,
scroll_mr_48: &'static str,
scroll_mr_5: &'static str,
scroll_mr_52: &'static str,
scroll_mr_56: &'static str,
scroll_mr_6: &'static str,
scroll_mr_60: &'static str,
scroll_mr_64: &'static str,
scroll_mr_7: &'static str,
scroll_mr_72: &'static str,
scroll_mr_8: &'static str,
scroll_mr_80: &'static str,
scroll_mr_9: &'static str,
scroll_mr_96: &'static str,
scroll_mr_px: &'static str,
scroll_mt_0: &'static str,
scroll_mt_0_p_5: &'static str,
scroll_mt_1: &'static str,
scroll_mt_10: &'static str,
scroll_mt_11: &'static str,
scroll_mt_12: &'static str,
scroll_mt_14: &'static str,
scroll_mt_16: &'static str,
scroll_mt_1_p_5: &'static str,
scroll_mt_2: &'static str,
scroll_mt_20: &'static str,
scroll_mt_24: &'static str,
scroll_mt_28: &'static str,
scroll_mt_2_p_5: &'static str,
scroll_mt_3: &'static str,
scroll_mt_32: &'static str,
scroll_mt_36: &'static str,
scroll_mt_3_p_5: &'static str,
scroll_mt_4: &'static str,
scroll_mt_40: &'static str,
scroll_mt_44: &'static str,
scroll_mt_48: &'static str,
scroll_mt_5: &'static str,
scroll_mt_52: &'static str,
scroll_mt_56: &'static str,
scroll_mt_6: &'static str,
scroll_mt_60: &'static str,
scroll_mt_64: &'static str,
scroll_mt_7: &'static str,
scroll_mt_72: &'static str,
scroll_mt_8: &'static str,
scroll_mt_80: &'static str,
scroll_mt_9: &'static str,
scroll_mt_96: &'static str,
scroll_mt_px: &'static str,
scroll_mx_0: &'static str,
scroll_mx_0_p_5: &'static str,
scroll_mx_1: &'static str,
scroll_mx_10: &'static str,
scroll_mx_11: &'static str,
scroll_mx_12: &'static str,
scroll_mx_14: &'static str,
scroll_mx_16: &'static str,
scroll_mx_1_p_5: &'static str,
scroll_mx_2: &'static str,
scroll_mx_20: &'static str,
scroll_mx_24: &'static str,
scroll_mx_28: &'static str,
scroll_mx_2_p_5: &'static str,
scroll_mx_3: &'static str,
scroll_mx_32: &'static str,
scroll_mx_36: &'static str,
scroll_mx_3_p_5: &'static str,
scroll_mx_4: &'static str,
scroll_mx_40: &'static str,
scroll_mx_44: &'static str,
scroll_mx_48: &'static str,
scroll_mx_5: &'static str,
scroll_mx_52: &'static str,
scroll_mx_56: &'static str,
scroll_mx_6: &'static str,
scroll_mx_60: &'static str,
scroll_mx_64: &'static str,
scroll_mx_7: &'static str,
scroll_mx_72: &'static str,
scroll_mx_8: &'static str,
scroll_mx_80: &'static str,
scroll_mx_9: &'static str,
scroll_mx_96: &'static str,
scroll_mx_px: &'static str,
scroll_my_0: &'static str,
scroll_my_0_p_5: &'static str,
scroll_my_1: &'static str,
scroll_my_10: &'static str,
scroll_my_11: &'static str,
scroll_my_12: &'static str,
scroll_my_14: &'static str,
scroll_my_16: &'static str,
scroll_my_1_p_5: &'static str,
scroll_my_2: &'static str,
scroll_my_20: &'static str,
scroll_my_24: &'static str,
scroll_my_28: &'static str,
scroll_my_2_p_5: &'static str,
scroll_my_3: &'static str,
scroll_my_32: &'static str,
scroll_my_36: &'static str,
scroll_my_3_p_5: &'static str,
scroll_my_4: &'static str,
scroll_my_40: &'static str,
scroll_my_44: &'static str,
scroll_my_48: &'static str,
scroll_my_5: &'static str,
scroll_my_52: &'static str,
scroll_my_56: &'static str,
scroll_my_6: &'static str,
scroll_my_60: &'static str,
scroll_my_64: &'static str,
scroll_my_7: &'static str,
scroll_my_72: &'static str,
scroll_my_8: &'static str,
scroll_my_80: &'static str,
scroll_my_9: &'static str,
scroll_my_96: &'static str,
scroll_my_px: &'static str,
scroll_p_0: &'static str,
scroll_p_0_p_5: &'static str,
scroll_p_1: &'static str,
scroll_p_10: &'static str,
scroll_p_11: &'static str,
scroll_p_12: &'static str,
scroll_p_14: &'static str,
scroll_p_16: &'static str,
scroll_p_1_p_5: &'static str,
scroll_p_2: &'static str,
scroll_p_20: &'static str,
scroll_p_24: &'static str,
scroll_p_28: &'static str,
scroll_p_2_p_5: &'static str,
scroll_p_3: &'static str,
scroll_p_32: &'static str,
scroll_p_36: &'static str,
scroll_p_3_p_5: &'static str,
scroll_p_4: &'static str,
scroll_p_40: &'static str,
scroll_p_44: &'static str,
scroll_p_48: &'static str,
scroll_p_5: &'static str,
scroll_p_52: &'static str,
scroll_p_56: &'static str,
scroll_p_6: &'static str,
scroll_p_60: &'static str,
scroll_p_64: &'static str,
scroll_p_7: &'static str,
scroll_p_72: &'static str,
scroll_p_8: &'static str,
scroll_p_80: &'static str,
scroll_p_9: &'static str,
scroll_p_96: &'static str,
scroll_p_px: &'static str,
scroll_pb_0: &'static str,
scroll_pb_0_p_5: &'static str,
scroll_pb_1: &'static str,
scroll_pb_10: &'static str,
scroll_pb_11: &'static str,
scroll_pb_12: &'static str,
scroll_pb_14: &'static str,
scroll_pb_16: &'static str,
scroll_pb_1_p_5: &'static str,
scroll_pb_2: &'static str,
scroll_pb_20: &'static str,
scroll_pb_24: &'static str,
scroll_pb_28: &'static str,
scroll_pb_2_p_5: &'static str,
scroll_pb_3: &'static str,
scroll_pb_32: &'static str,
scroll_pb_36: &'static str,
scroll_pb_3_p_5: &'static str,
scroll_pb_4: &'static str,
scroll_pb_40: &'static str,
scroll_pb_44: &'static str,
scroll_pb_48: &'static str,
scroll_pb_5: &'static str,
scroll_pb_52: &'static str,
scroll_pb_56: &'static str,
scroll_pb_6: &'static str,
scroll_pb_60: &'static str,
scroll_pb_64: &'static str,
scroll_pb_7: &'static str,
scroll_pb_72: &'static str,
scroll_pb_8: &'static str,
scroll_pb_80: &'static str,
scroll_pb_9: &'static str,
scroll_pb_96: &'static str,
scroll_pb_px: &'static str,
scroll_pl_0: &'static str,
scroll_pl_0_p_5: &'static str,
scroll_pl_1: &'static str,
scroll_pl_10: &'static str,
scroll_pl_11: &'static str,
scroll_pl_12: &'static str,
scroll_pl_14: &'static str,
scroll_pl_16: &'static str,
scroll_pl_1_p_5: &'static str,
scroll_pl_2: &'static str,
scroll_pl_20: &'static str,
scroll_pl_24: &'static str,
scroll_pl_28: &'static str,
scroll_pl_2_p_5: &'static str,
scroll_pl_3: &'static str,
scroll_pl_32: &'static str,
scroll_pl_36: &'static str,
scroll_pl_3_p_5: &'static str,
scroll_pl_4: &'static str,
scroll_pl_40: &'static str,
scroll_pl_44: &'static str,
scroll_pl_48: &'static str,
scroll_pl_5: &'static str,
scroll_pl_52: &'static str,
scroll_pl_56: &'static str,
scroll_pl_6: &'static str,
scroll_pl_60: &'static str,
scroll_pl_64: &'static str,
scroll_pl_7: &'static str,
scroll_pl_72: &'static str,
scroll_pl_8: &'static str,
scroll_pl_80: &'static str,
scroll_pl_9: &'static str,
scroll_pl_96: &'static str,
scroll_pl_px: &'static str,
scroll_pr_0: &'static str,
scroll_pr_0_p_5: &'static str,
scroll_pr_1: &'static str,
scroll_pr_10: &'static str,
scroll_pr_11: &'static str,
scroll_pr_12: &'static str,
scroll_pr_14: &'static str,
scroll_pr_16: &'static str,
scroll_pr_1_p_5: &'static str,
scroll_pr_2: &'static str,
scroll_pr_20: &'static str,
scroll_pr_24: &'static str,
scroll_pr_28: &'static str,
scroll_pr_2_p_5: &'static str,
scroll_pr_3: &'static str,
scroll_pr_32: &'static str,
scroll_pr_36: &'static str,
scroll_pr_3_p_5: &'static str,
scroll_pr_4: &'static str,
scroll_pr_40: &'static str,
scroll_pr_44: &'static str,
scroll_pr_48: &'static str,
scroll_pr_5: &'static str,
scroll_pr_52: &'static str,
scroll_pr_56: &'static str,
scroll_pr_6: &'static str,
scroll_pr_60: &'static str,
scroll_pr_64: &'static str,
scroll_pr_7: &'static str,
scroll_pr_72: &'static str,
scroll_pr_8: &'static str,
scroll_pr_80: &'static str,
scroll_pr_9: &'static str,
scroll_pr_96: &'static str,
scroll_pr_px: &'static str,
scroll_pt_0: &'static str,
scroll_pt_0_p_5: &'static str,
scroll_pt_1: &'static str,
scroll_pt_10: &'static str,
scroll_pt_11: &'static str,
scroll_pt_12: &'static str,
scroll_pt_14: &'static str,
scroll_pt_16: &'static str,
scroll_pt_1_p_5: &'static str,
scroll_pt_2: &'static str,
scroll_pt_20: &'static str,
scroll_pt_24: &'static str,
scroll_pt_28: &'static str,
scroll_pt_2_p_5: &'static str,
scroll_pt_3: &'static str,
scroll_pt_32: &'static str,
scroll_pt_36: &'static str,
scroll_pt_3_p_5: &'static str,
scroll_pt_4: &'static str,
scroll_pt_40: &'static str,
scroll_pt_44: &'static str,
scroll_pt_48: &'static str,
scroll_pt_5: &'static str,
scroll_pt_52: &'static str,
scroll_pt_56: &'static str,
scroll_pt_6: &'static str,
scroll_pt_60: &'static str,
scroll_pt_64: &'static str,
scroll_pt_7: &'static str,
scroll_pt_72: &'static str,
scroll_pt_8: &'static str,
scroll_pt_80: &'static str,
scroll_pt_9: &'static str,
scroll_pt_96: &'static str,
scroll_pt_px: &'static str,
scroll_px_0: &'static str,
scroll_px_0_p_5: &'static str,
scroll_px_1: &'static str,
scroll_px_10: &'static str,
scroll_px_11: &'static str,
scroll_px_12: &'static str,
scroll_px_14: &'static str,
scroll_px_16: &'static str,
scroll_px_1_p_5: &'static str,
scroll_px_2: &'static str,
scroll_px_20: &'static str,
scroll_px_24: &'static str,
scroll_px_28: &'static str,
scroll_px_2_p_5: &'static str,
scroll_px_3: &'static str,
scroll_px_32: &'static str,
scroll_px_36: &'static str,
scroll_px_3_p_5: &'static str,
scroll_px_4: &'static str,
scroll_px_40: &'static str,
scroll_px_44: &'static str,
scroll_px_48: &'static str,
scroll_px_5: &'static str,
scroll_px_52: &'static str,
scroll_px_56: &'static str,
scroll_px_6: &'static str,
scroll_px_60: &'static str,
scroll_px_64: &'static str,
scroll_px_7: &'static str,
scroll_px_72: &'static str,
scroll_px_8: &'static str,
scroll_px_80: &'static str,
scroll_px_9: &'static str,
scroll_px_96: &'static str,
scroll_px_px: &'static str,
scroll_py_0: &'static str,
scroll_py_0_p_5: &'static str,
scroll_py_1: &'static str,
scroll_py_10: &'static str,
scroll_py_11: &'static str,
scroll_py_12: &'static str,
scroll_py_14: &'static str,
scroll_py_16: &'static str,
scroll_py_1_p_5: &'static str,
scroll_py_2: &'static str,
scroll_py_20: &'static str,
scroll_py_24: &'static str,
scroll_py_28: &'static str,
scroll_py_2_p_5: &'static str,
scroll_py_3: &'static str,
scroll_py_32: &'static str,
scroll_py_36: &'static str,
scroll_py_3_p_5: &'static str,
scroll_py_4: &'static str,
scroll_py_40: &'static str,
scroll_py_44: &'static str,
scroll_py_48: &'static str,
scroll_py_5: &'static str,
scroll_py_52: &'static str,
scroll_py_56: &'static str,
scroll_py_6: &'static str,
scroll_py_60: &'static str,
scroll_py_64: &'static str,
scroll_py_7: &'static str,
scroll_py_72: &'static str,
scroll_py_8: &'static str,
scroll_py_80: &'static str,
scroll_py_9: &'static str,
scroll_py_96: &'static str,
scroll_py_px: &'static str,
scroll_smooth: &'static str,
select_all: &'static str,
select_auto: &'static str,
select_none: &'static str,
select_text: &'static str,
snap_align_none: &'static str,
snap_always: &'static str,
snap_both: &'static str,
snap_center: &'static str,
snap_end: &'static str,
snap_mandatory: &'static str,
snap_none: &'static str,
snap_normal: &'static str,
snap_proximity: &'static str,
snap_start: &'static str,
snap_x: &'static str,
snap_y: &'static str,
touch_auto: &'static str,
touch_manipulation: &'static str,
touch_none: &'static str,
touch_pan_down: &'static str,
touch_pan_left: &'static str,
touch_pan_right: &'static str,
touch_pan_up: &'static str,
touch_pan_x: &'static str,
touch_pan_y: &'static str,
touch_pinch_zoom: &'static str,
will_change_auto: &'static str,
will_change_contents: &'static str,
will_change_scroll: &'static str,
will_change_transform: &'static str,
}
pub struct Layout {
absolute: &'static str,
aspect_auto: &'static str,
aspect_square: &'static str,
aspect_video: &'static str,
block: &'static str,
bottom_0: &'static str,
bottom_0_p_5: &'static str,
bottom_1: &'static str,
bottom_10: &'static str,
bottom_11: &'static str,
bottom_12: &'static str,
bottom_14: &'static str,
bottom_16: &'static str,
bottom_1_of_2: &'static str,
bottom_1_of_3: &'static str,
bottom_1_of_4: &'static str,
bottom_1_p_5: &'static str,
bottom_2: &'static str,
bottom_20: &'static str,
bottom_24: &'static str,
bottom_28: &'static str,
bottom_2_of_3: &'static str,
bottom_2_of_4: &'static str,
bottom_2_p_5: &'static str,
bottom_3: &'static str,
bottom_32: &'static str,
bottom_36: &'static str,
bottom_3_of_4: &'static str,
bottom_3_p_5: &'static str,
bottom_4: &'static str,
bottom_40: &'static str,
bottom_44: &'static str,
bottom_48: &'static str,
bottom_5: &'static str,
bottom_52: &'static str,
bottom_56: &'static str,
bottom_6: &'static str,
bottom_60: &'static str,
bottom_64: &'static str,
bottom_7: &'static str,
bottom_72: &'static str,
bottom_8: &'static str,
bottom_80: &'static str,
bottom_9: &'static str,
bottom_96: &'static str,
bottom_auto: &'static str,
bottom_full: &'static str,
bottom_px: &'static str,
box_border: &'static str,
box_content: &'static str,
box_decoration_clone: &'static str,
box_decoration_slice: &'static str,
break_after_all: &'static str,
break_after_auto: &'static str,
break_after_avoid: &'static str,
break_after_avoid_page: &'static str,
break_after_column: &'static str,
break_after_left: &'static str,
break_after_page: &'static str,
break_after_right: &'static str,
break_before_all: &'static str,
break_before_auto: &'static str,
break_before_avoid: &'static str,
break_before_avoid_page: &'static str,
break_before_column: &'static str,
break_before_left: &'static str,
break_before_page: &'static str,
break_before_right: &'static str,
break_inside_auto: &'static str,
break_inside_avoid: &'static str,
break_inside_avoid_column: &'static str,
break_inside_avoid_page: &'static str,
clear_both: &'static str,
clear_left: &'static str,
clear_none: &'static str,
clear_right: &'static str,
columns_1: &'static str,
columns_10: &'static str,
columns_11: &'static str,
columns_12: &'static str,
columns_2: &'static str,
columns_2xl: &'static str,
columns_2xs: &'static str,
columns_3: &'static str,
columns_3xl: &'static str,
columns_3xs: &'static str,
columns_4: &'static str,
columns_4xl: &'static str,
columns_5: &'static str,
columns_5xl: &'static str,
columns_6: &'static str,
columns_6xl: &'static str,
columns_7: &'static str,
columns_7xl: &'static str,
columns_8: &'static str,
columns_9: &'static str,
columns_auto: &'static str,
columns_lg: &'static str,
columns_md: &'static str,
columns_sm: &'static str,
columns_xl: &'static str,
columns_xs: &'static str,
container: &'static str,
contents: &'static str,
decoration_clone: &'static str,
decoration_slice: &'static str,
fixed: &'static str,
flex: &'static str,
float_left: &'static str,
float_none: &'static str,
float_right: &'static str,
flow_root: &'static str,
grid: &'static str,
hidden: &'static str,
inline: &'static str,
inline_block: &'static str,
inline_flex: &'static str,
inline_grid: &'static str,
inline_table: &'static str,
inset_0: &'static str,
inset_0_p_5: &'static str,
inset_1: &'static str,
inset_10: &'static str,
inset_11: &'static str,
inset_12: &'static str,
inset_14: &'static str,
inset_16: &'static str,
inset_1_of_2: &'static str,
inset_1_of_3: &'static str,
inset_1_of_4: &'static str,
inset_1_p_5: &'static str,
inset_2: &'static str,
inset_20: &'static str,
inset_24: &'static str,
inset_28: &'static str,
inset_2_of_3: &'static str,
inset_2_of_4: &'static str,
inset_2_p_5: &'static str,
inset_3: &'static str,
inset_32: &'static str,
inset_36: &'static str,
inset_3_of_4: &'static str,
inset_3_p_5: &'static str,
inset_4: &'static str,
inset_40: &'static str,
inset_44: &'static str,
inset_48: &'static str,
inset_5: &'static str,
inset_52: &'static str,
inset_56: &'static str,
inset_6: &'static str,
inset_60: &'static str,
inset_64: &'static str,
inset_7: &'static str,
inset_72: &'static str,
inset_8: &'static str,
inset_80: &'static str,
inset_9: &'static str,
inset_96: &'static str,
inset_auto: &'static str,
inset_full: &'static str,
inset_px: &'static str,
inset_x_0: &'static str,
inset_x_0_p_5: &'static str,
inset_x_1: &'static str,
inset_x_10: &'static str,
inset_x_11: &'static str,
inset_x_12: &'static str,
inset_x_14: &'static str,
inset_x_16: &'static str,
inset_x_1_of_2: &'static str,
inset_x_1_of_3: &'static str,
inset_x_1_of_4: &'static str,
inset_x_1_p_5: &'static str,
inset_x_2: &'static str,
inset_x_20: &'static str,
inset_x_24: &'static str,
inset_x_28: &'static str,
inset_x_2_of_3: &'static str,
inset_x_2_of_4: &'static str,
inset_x_2_p_5: &'static str,
inset_x_3: &'static str,
inset_x_32: &'static str,
inset_x_36: &'static str,
inset_x_3_of_4: &'static str,
inset_x_3_p_5: &'static str,
inset_x_4: &'static str,
inset_x_40: &'static str,
inset_x_44: &'static str,
inset_x_48: &'static str,
inset_x_5: &'static str,
inset_x_52: &'static str,
inset_x_56: &'static str,
inset_x_6: &'static str,
inset_x_60: &'static str,
inset_x_64: &'static str,
inset_x_7: &'static str,
inset_x_72: &'static str,
inset_x_8: &'static str,
inset_x_80: &'static str,
inset_x_9: &'static str,
inset_x_96: &'static str,
inset_x_auto: &'static str,
inset_x_full: &'static str,
inset_x_px: &'static str,
inset_y_0: &'static str,
inset_y_0_p_5: &'static str,
inset_y_1: &'static str,
inset_y_10: &'static str,
inset_y_11: &'static str,
inset_y_12: &'static str,
inset_y_14: &'static str,
inset_y_16: &'static str,
inset_y_1_of_2: &'static str,
inset_y_1_of_3: &'static str,
inset_y_1_of_4: &'static str,
inset_y_1_p_5: &'static str,
inset_y_2: &'static str,
inset_y_20: &'static str,
inset_y_24: &'static str,
inset_y_28: &'static str,
inset_y_2_of_3: &'static str,
inset_y_2_of_4: &'static str,
inset_y_2_p_5: &'static str,
inset_y_3: &'static str,
inset_y_32: &'static str,
inset_y_36: &'static str,
inset_y_3_of_4: &'static str,
inset_y_3_p_5: &'static str,
inset_y_4: &'static str,
inset_y_40: &'static str,
inset_y_44: &'static str,
inset_y_48: &'static str,
inset_y_5: &'static str,
inset_y_52: &'static str,
inset_y_56: &'static str,
inset_y_6: &'static str,
inset_y_60: &'static str,
inset_y_64: &'static str,
inset_y_7: &'static str,
inset_y_72: &'static str,
inset_y_8: &'static str,
inset_y_80: &'static str,
inset_y_9: &'static str,
inset_y_96: &'static str,
inset_y_auto: &'static str,
inset_y_full: &'static str,
inset_y_px: &'static str,
invisible: &'static str,
isolate: &'static str,
isolation_auto: &'static str,
left_0: &'static str,
left_0_p_5: &'static str,
left_1: &'static str,
left_10: &'static str,
left_11: &'static str,
left_12: &'static str,
left_14: &'static str,
left_16: &'static str,
left_1_of_2: &'static str,
left_1_of_3: &'static str,
left_1_of_4: &'static str,
left_1_p_5: &'static str,
left_2: &'static str,
left_20: &'static str,
left_24: &'static str,
left_28: &'static str,
left_2_of_3: &'static str,
left_2_of_4: &'static str,
left_2_p_5: &'static str,
left_3: &'static str,
left_32: &'static str,
left_36: &'static str,
left_3_of_4: &'static str,
left_3_p_5: &'static str,
left_4: &'static str,
left_40: &'static str,
left_44: &'static str,
left_48: &'static str,
left_5: &'static str,
left_52: &'static str,
left_56: &'static str,
left_6: &'static str,
left_60: &'static str,
left_64: &'static str,
left_7: &'static str,
left_72: &'static str,
left_8: &'static str,
left_80: &'static str,
left_9: &'static str,
left_96: &'static str,
left_auto: &'static str,
left_full: &'static str,
left_px: &'static str,
list_item: &'static str,
object_bottom: &'static str,
object_center: &'static str,
object_contain: &'static str,
object_cover: &'static str,
object_fill: &'static str,
object_left: &'static str,
object_left_bottom: &'static str,
object_left_top: &'static str,
object_none: &'static str,
object_right: &'static str,
object_right_bottom: &'static str,
object_right_top: &'static str,
object_scale_down: &'static str,
object_top: &'static str,
overflow_auto: &'static str,
overflow_clip: &'static str,
overflow_ellipsis: &'static str,
overflow_hidden: &'static str,
overflow_scroll: &'static str,
overflow_visible: &'static str,
overflow_x_auto: &'static str,
overflow_x_clip: &'static str,
overflow_x_hidden: &'static str,
overflow_x_scroll: &'static str,
overflow_x_visible: &'static str,
overflow_y_auto: &'static str,
overflow_y_clip: &'static str,
overflow_y_hidden: &'static str,
overflow_y_scroll: &'static str,
overflow_y_visible: &'static str,
overscroll_auto: &'static str,
overscroll_contain: &'static str,
overscroll_none: &'static str,
overscroll_x_auto: &'static str,
overscroll_x_contain: &'static str,
overscroll_x_none: &'static str,
overscroll_y_auto: &'static str,
overscroll_y_contain: &'static str,
overscroll_y_none: &'static str,
relative: &'static str,
right_0: &'static str,
right_0_p_5: &'static str,
right_1: &'static str,
right_10: &'static str,
right_11: &'static str,
right_12: &'static str,
right_14: &'static str,
right_16: &'static str,
right_1_of_2: &'static str,
right_1_of_3: &'static str,
right_1_of_4: &'static str,
right_1_p_5: &'static str,
right_2: &'static str,
right_20: &'static str,
right_24: &'static str,
right_28: &'static str,
right_2_of_3: &'static str,
right_2_of_4: &'static str,
right_2_p_5: &'static str,
right_3: &'static str,
right_32: &'static str,
right_36: &'static str,
right_3_of_4: &'static str,
right_3_p_5: &'static str,
right_4: &'static str,
right_40: &'static str,
right_44: &'static str,
right_48: &'static str,
right_5: &'static str,
right_52: &'static str,
right_56: &'static str,
right_6: &'static str,
right_60: &'static str,
right_64: &'static str,
right_7: &'static str,
right_72: &'static str,
right_8: &'static str,
right_80: &'static str,
right_9: &'static str,
right_96: &'static str,
right_auto: &'static str,
right_full: &'static str,
right_px: &'static str,
r#static: &'static str,
sticky: &'static str,
table: &'static str,
table_caption: &'static str,
table_cell: &'static str,
table_column: &'static str,
table_column_group: &'static str,
table_footer_group: &'static str,
table_header_group: &'static str,
table_row: &'static str,
table_row_group: &'static str,
top_0: &'static str,
top_0_p_5: &'static str,
top_1: &'static str,
top_10: &'static str,
top_11: &'static str,
top_12: &'static str,
top_14: &'static str,
top_16: &'static str,
top_1_of_2: &'static str,
top_1_of_3: &'static str,
top_1_of_4: &'static str,
top_1_p_5: &'static str,
top_2: &'static str,
top_20: &'static str,
top_24: &'static str,
top_28: &'static str,
top_2_of_3: &'static str,
top_2_of_4: &'static str,
top_2_p_5: &'static str,
top_3: &'static str,
top_32: &'static str,
top_36: &'static str,
top_3_of_4: &'static str,
top_3_p_5: &'static str,
top_4: &'static str,
top_40: &'static str,
top_44: &'static str,
top_48: &'static str,
top_5: &'static str,
top_52: &'static str,
top_56: &'static str,
top_6: &'static str,
top_60: &'static str,
top_64: &'static str,
top_7: &'static str,
top_72: &'static str,
top_8: &'static str,
top_80: &'static str,
top_9: &'static str,
top_96: &'static str,
top_auto: &'static str,
top_full: &'static str,
top_px: &'static str,
visible: &'static str,
z_0: &'static str,
z_10: &'static str,
z_20: &'static str,
z_30: &'static str,
z_40: &'static str,
z_50: &'static str,
z_auto: &'static str,
}
pub struct LineClamp {
line_clamp_1: &'static str,
line_clamp_2: &'static str,
line_clamp_3: &'static str,
line_clamp_4: &'static str,
line_clamp_5: &'static str,
line_clamp_6: &'static str,
line_clamp_none: &'static str,
}
pub struct Prose {
prose: &'static str,
prose_2xl: &'static str,
prose_amber: &'static str,
prose_base: &'static str,
prose_blue: &'static str,
prose_cyan: &'static str,
prose_emerald: &'static str,
prose_fuchsia: &'static str,
prose_gray: &'static str,
prose_green: &'static str,
prose_indigo: &'static str,
prose_invert: &'static str,
prose_lg: &'static str,
prose_lime: &'static str,
prose_neutral: &'static str,
prose_orange: &'static str,
prose_pink: &'static str,
prose_purple: &'static str,
prose_red: &'static str,
prose_rose: &'static str,
prose_sky: &'static str,
prose_slate: &'static str,
prose_sm: &'static str,
prose_stone: &'static str,
prose_teal: &'static str,
prose_violet: &'static str,
prose_xl: &'static str,
prose_yellow: &'static str,
prose_zinc: &'static str,
}
pub struct Sizing {
h_0: &'static str,
h_0_p_5: &'static str,
h_1: &'static str,
h_10: &'static str,
h_11: &'static str,
h_12: &'static str,
h_14: &'static str,
h_16: &'static str,
h_1_of_2: &'static str,
h_1_of_3: &'static str,
h_1_of_4: &'static str,
h_1_of_5: &'static str,
h_1_of_6: &'static str,
h_1_p_5: &'static str,
h_2: &'static str,
h_20: &'static str,
h_24: &'static str,
h_28: &'static str,
h_2_of_3: &'static str,
h_2_of_4: &'static str,
h_2_of_5: &'static str,
h_2_of_6: &'static str,
h_2_p_5: &'static str,
h_3: &'static str,
h_32: &'static str,
h_36: &'static str,
h_3_of_4: &'static str,
h_3_of_5: &'static str,
h_3_of_6: &'static str,
h_3_p_5: &'static str,
h_4: &'static str,
h_40: &'static str,
h_44: &'static str,
h_48: &'static str,
h_4_of_5: &'static str,
h_4_of_6: &'static str,
h_5: &'static str,
h_52: &'static str,
h_56: &'static str,
h_5_of_6: &'static str,
h_6: &'static str,
h_60: &'static str,
h_64: &'static str,
h_7: &'static str,
h_72: &'static str,
h_8: &'static str,
h_80: &'static str,
h_9: &'static str,
h_96: &'static str,
h_auto: &'static str,
h_fit: &'static str,
h_full: &'static str,
h_max: &'static str,
h_min: &'static str,
h_px: &'static str,
h_screen: &'static str,
max_h_0: &'static str,
max_h_0_p_5: &'static str,
max_h_1: &'static str,
max_h_10: &'static str,
max_h_11: &'static str,
max_h_12: &'static str,
max_h_14: &'static str,
max_h_16: &'static str,
max_h_1_p_5: &'static str,
max_h_2: &'static str,
max_h_20: &'static str,
max_h_24: &'static str,
max_h_28: &'static str,
max_h_2_p_5: &'static str,
max_h_3: &'static str,
max_h_32: &'static str,
max_h_36: &'static str,
max_h_3_p_5: &'static str,
max_h_4: &'static str,
max_h_40: &'static str,
max_h_44: &'static str,
max_h_48: &'static str,
max_h_5: &'static str,
max_h_52: &'static str,
max_h_56: &'static str,
max_h_6: &'static str,
max_h_60: &'static str,
max_h_64: &'static str,
max_h_7: &'static str,
max_h_72: &'static str,
max_h_8: &'static str,
max_h_80: &'static str,
max_h_9: &'static str,
max_h_96: &'static str,
max_h_fit: &'static str,
max_h_full: &'static str,
max_h_max: &'static str,
max_h_min: &'static str,
max_h_px: &'static str,
max_h_screen: &'static str,
max_w_0: &'static str,
max_w_2xl: &'static str,
max_w_3xl: &'static str,
max_w_4xl: &'static str,
max_w_5xl: &'static str,
max_w_6xl: &'static str,
max_w_7xl: &'static str,
max_w_fit: &'static str,
max_w_full: &'static str,
max_w_lg: &'static str,
max_w_max: &'static str,
max_w_md: &'static str,
max_w_min: &'static str,
max_w_none: &'static str,
max_w_prose: &'static str,
max_w_screen_2xl: &'static str,
max_w_screen_lg: &'static str,
max_w_screen_md: &'static str,
max_w_screen_sm: &'static str,
max_w_screen_xl: &'static str,
max_w_sm: &'static str,
max_w_xl: &'static str,
max_w_xs: &'static str,
min_h_0: &'static str,
min_h_fit: &'static str,
min_h_full: &'static str,
min_h_max: &'static str,
min_h_min: &'static str,
min_h_screen: &'static str,
min_w_0: &'static str,
min_w_fit: &'static str,
min_w_full: &'static str,
min_w_max: &'static str,
min_w_min: &'static str,
w_0: &'static str,
w_0_p_5: &'static str,
w_1: &'static str,
w_10: &'static str,
w_10_of_12: &'static str,
w_11: &'static str,
w_11_of_12: &'static str,
w_12: &'static str,
w_14: &'static str,
w_16: &'static str,
w_1_of_12: &'static str,
w_1_of_2: &'static str,
w_1_of_3: &'static str,
w_1_of_4: &'static str,
w_1_of_5: &'static str,
w_1_of_6: &'static str,
w_1_p_5: &'static str,
w_2: &'static str,
w_20: &'static str,
w_24: &'static str,
w_28: &'static str,
w_2_of_12: &'static str,
w_2_of_3: &'static str,
w_2_of_4: &'static str,
w_2_of_5: &'static str,
w_2_of_6: &'static str,
w_2_p_5: &'static str,
w_3: &'static str,
w_32: &'static str,
w_36: &'static str,
w_3_of_12: &'static str,
w_3_of_4: &'static str,
w_3_of_5: &'static str,
w_3_of_6: &'static str,
w_3_p_5: &'static str,
w_4: &'static str,
w_40: &'static str,
w_44: &'static str,
w_48: &'static str,
w_4_of_12: &'static str,
w_4_of_5: &'static str,
w_4_of_6: &'static str,
w_5: &'static str,
w_52: &'static str,
w_56: &'static str,
w_5_of_12: &'static str,
w_5_of_6: &'static str,
w_6: &'static str,
w_60: &'static str,
w_64: &'static str,
w_6_of_12: &'static str,
w_7: &'static str,
w_72: &'static str,
w_7_of_12: &'static str,
w_8: &'static str,
w_80: &'static str,
w_8_of_12: &'static str,
w_9: &'static str,
w_96: &'static str,
w_9_of_12: &'static str,
w_auto: &'static str,
w_fit: &'static str,
w_full: &'static str,
w_max: &'static str,
w_min: &'static str,
w_px: &'static str,
w_screen: &'static str,
}
pub struct Spacing {
m_0: &'static str,
m_0_p_5: &'static str,
m_1: &'static str,
m_10: &'static str,
m_11: &'static str,
m_12: &'static str,
m_14: &'static str,
m_16: &'static str,
m_1_p_5: &'static str,
m_2: &'static str,
m_20: &'static str,
m_24: &'static str,
m_28: &'static str,
m_2_p_5: &'static str,
m_3: &'static str,
m_32: &'static str,
m_36: &'static str,
m_3_p_5: &'static str,
m_4: &'static str,
m_40: &'static str,
m_44: &'static str,
m_48: &'static str,
m_5: &'static str,
m_52: &'static str,
m_56: &'static str,
m_6: &'static str,
m_60: &'static str,
m_64: &'static str,
m_7: &'static str,
m_72: &'static str,
m_8: &'static str,
m_80: &'static str,
m_9: &'static str,
m_96: &'static str,
m_auto: &'static str,
m_px: &'static str,
mb_0: &'static str,
mb_0_p_5: &'static str,
mb_1: &'static str,
mb_10: &'static str,
mb_11: &'static str,
mb_12: &'static str,
mb_14: &'static str,
mb_16: &'static str,
mb_1_p_5: &'static str,
mb_2: &'static str,
mb_20: &'static str,
mb_24: &'static str,
mb_28: &'static str,
mb_2_p_5: &'static str,
mb_3: &'static str,
mb_32: &'static str,
mb_36: &'static str,
mb_3_p_5: &'static str,
mb_4: &'static str,
mb_40: &'static str,
mb_44: &'static str,
mb_48: &'static str,
mb_5: &'static str,
mb_52: &'static str,
mb_56: &'static str,
mb_6: &'static str,
mb_60: &'static str,
mb_64: &'static str,
mb_7: &'static str,
mb_72: &'static str,
mb_8: &'static str,
mb_80: &'static str,
mb_9: &'static str,
mb_96: &'static str,
mb_auto: &'static str,
mb_px: &'static str,
ml_0: &'static str,
ml_0_p_5: &'static str,
ml_1: &'static str,
ml_10: &'static str,
ml_11: &'static str,
ml_12: &'static str,
ml_14: &'static str,
ml_16: &'static str,
ml_1_p_5: &'static str,
ml_2: &'static str,
ml_20: &'static str,
ml_24: &'static str,
ml_28: &'static str,
ml_2_p_5: &'static str,
ml_3: &'static str,
ml_32: &'static str,
ml_36: &'static str,
ml_3_p_5: &'static str,
ml_4: &'static str,
ml_40: &'static str,
ml_44: &'static str,
ml_48: &'static str,
ml_5: &'static str,
ml_52: &'static str,
ml_56: &'static str,
ml_6: &'static str,
ml_60: &'static str,
ml_64: &'static str,
ml_7: &'static str,
ml_72: &'static str,
ml_8: &'static str,
ml_80: &'static str,
ml_9: &'static str,
ml_96: &'static str,
ml_auto: &'static str,
ml_px: &'static str,
mr_0: &'static str,
mr_0_p_5: &'static str,
mr_1: &'static str,
mr_10: &'static str,
mr_11: &'static str,
mr_12: &'static str,
mr_14: &'static str,
mr_16: &'static str,
mr_1_p_5: &'static str,
mr_2: &'static str,
mr_20: &'static str,
mr_24: &'static str,
mr_28: &'static str,
mr_2_p_5: &'static str,
mr_3: &'static str,
mr_32: &'static str,
mr_36: &'static str,
mr_3_p_5: &'static str,
mr_4: &'static str,
mr_40: &'static str,
mr_44: &'static str,
mr_48: &'static str,
mr_5: &'static str,
mr_52: &'static str,
mr_56: &'static str,
mr_6: &'static str,
mr_60: &'static str,
mr_64: &'static str,
mr_7: &'static str,
mr_72: &'static str,
mr_8: &'static str,
mr_80: &'static str,
mr_9: &'static str,
mr_96: &'static str,
mr_auto: &'static str,
mr_px: &'static str,
mt_0: &'static str,
mt_0_p_5: &'static str,
mt_1: &'static str,
mt_10: &'static str,
mt_11: &'static str,
mt_12: &'static str,
mt_14: &'static str,
mt_16: &'static str,
mt_1_p_5: &'static str,
mt_2: &'static str,
mt_20: &'static str,
mt_24: &'static str,
mt_28: &'static str,
mt_2_p_5: &'static str,
mt_3: &'static str,
mt_32: &'static str,
mt_36: &'static str,
mt_3_p_5: &'static str,
mt_4: &'static str,
mt_40: &'static str,
mt_44: &'static str,
mt_48: &'static str,
mt_5: &'static str,
mt_52: &'static str,
mt_56: &'static str,
mt_6: &'static str,
mt_60: &'static str,
mt_64: &'static str,
mt_7: &'static str,
mt_72: &'static str,
mt_8: &'static str,
mt_80: &'static str,
mt_9: &'static str,
mt_96: &'static str,
mt_auto: &'static str,
mt_px: &'static str,
mx_0: &'static str,
mx_0_p_5: &'static str,
mx_1: &'static str,
mx_10: &'static str,
mx_11: &'static str,
mx_12: &'static str,
mx_14: &'static str,
mx_16: &'static str,
mx_1_p_5: &'static str,
mx_2: &'static str,
mx_20: &'static str,
mx_24: &'static str,
mx_28: &'static str,
mx_2_p_5: &'static str,
mx_3: &'static str,
mx_32: &'static str,
mx_36: &'static str,
mx_3_p_5: &'static str,
mx_4: &'static str,
mx_40: &'static str,
mx_44: &'static str,
mx_48: &'static str,
mx_5: &'static str,
mx_52: &'static str,
mx_56: &'static str,
mx_6: &'static str,
mx_60: &'static str,
mx_64: &'static str,
mx_7: &'static str,
mx_72: &'static str,
mx_8: &'static str,
mx_80: &'static str,
mx_9: &'static str,
mx_96: &'static str,
mx_auto: &'static str,
mx_px: &'static str,
my_0: &'static str,
my_0_p_5: &'static str,
my_1: &'static str,
my_10: &'static str,
my_11: &'static str,
my_12: &'static str,
my_14: &'static str,
my_16: &'static str,
my_1_p_5: &'static str,
my_2: &'static str,
my_20: &'static str,
my_24: &'static str,
my_28: &'static str,
my_2_p_5: &'static str,
my_3: &'static str,
my_32: &'static str,
my_36: &'static str,
my_3_p_5: &'static str,
my_4: &'static str,
my_40: &'static str,
my_44: &'static str,
my_48: &'static str,
my_5: &'static str,
my_52: &'static str,
my_56: &'static str,
my_6: &'static str,
my_60: &'static str,
my_64: &'static str,
my_7: &'static str,
my_72: &'static str,
my_8: &'static str,
my_80: &'static str,
my_9: &'static str,
my_96: &'static str,
my_auto: &'static str,
my_px: &'static str,
p_0: &'static str,
p_0_p_5: &'static str,
p_1: &'static str,
p_10: &'static str,
p_11: &'static str,
p_12: &'static str,
p_14: &'static str,
p_16: &'static str,
p_1_p_5: &'static str,
p_2: &'static str,
p_20: &'static str,
p_24: &'static str,
p_28: &'static str,
p_2_p_5: &'static str,
p_3: &'static str,
p_32: &'static str,
p_36: &'static str,
p_3_p_5: &'static str,
p_4: &'static str,
p_40: &'static str,
p_44: &'static str,
p_48: &'static str,
p_5: &'static str,
p_52: &'static str,
p_56: &'static str,
p_6: &'static str,
p_60: &'static str,
p_64: &'static str,
p_7: &'static str,
p_72: &'static str,
p_8: &'static str,
p_80: &'static str,
p_9: &'static str,
p_96: &'static str,
p_px: &'static str,
pb_0: &'static str,
pb_0_p_5: &'static str,
pb_1: &'static str,
pb_10: &'static str,
pb_11: &'static str,
pb_12: &'static str,
pb_14: &'static str,
pb_16: &'static str,
pb_1_p_5: &'static str,
pb_2: &'static str,
pb_20: &'static str,
pb_24: &'static str,
pb_28: &'static str,
pb_2_p_5: &'static str,
pb_3: &'static str,
pb_32: &'static str,
pb_36: &'static str,
pb_3_p_5: &'static str,
pb_4: &'static str,
pb_40: &'static str,
pb_44: &'static str,
pb_48: &'static str,
pb_5: &'static str,
pb_52: &'static str,
pb_56: &'static str,
pb_6: &'static str,
pb_60: &'static str,
pb_64: &'static str,
pb_7: &'static str,
pb_72: &'static str,
pb_8: &'static str,
pb_80: &'static str,
pb_9: &'static str,
pb_96: &'static str,
pb_px: &'static str,
pl_0: &'static str,
pl_0_p_5: &'static str,
pl_1: &'static str,
pl_10: &'static str,
pl_11: &'static str,
pl_12: &'static str,
pl_14: &'static str,
pl_16: &'static str,
pl_1_p_5: &'static str,
pl_2: &'static str,
pl_20: &'static str,
pl_24: &'static str,
pl_28: &'static str,
pl_2_p_5: &'static str,
pl_3: &'static str,
pl_32: &'static str,
pl_36: &'static str,
pl_3_p_5: &'static str,
pl_4: &'static str,
pl_40: &'static str,
pl_44: &'static str,
pl_48: &'static str,
pl_5: &'static str,
pl_52: &'static str,
pl_56: &'static str,
pl_6: &'static str,
pl_60: &'static str,
pl_64: &'static str,
pl_7: &'static str,
pl_72: &'static str,
pl_8: &'static str,
pl_80: &'static str,
pl_9: &'static str,
pl_96: &'static str,
pl_px: &'static str,
pr_0: &'static str,
pr_0_p_5: &'static str,
pr_1: &'static str,
pr_10: &'static str,
pr_11: &'static str,
pr_12: &'static str,
pr_14: &'static str,
pr_16: &'static str,
pr_1_p_5: &'static str,
pr_2: &'static str,
pr_20: &'static str,
pr_24: &'static str,
pr_28: &'static str,
pr_2_p_5: &'static str,
pr_3: &'static str,
pr_32: &'static str,
pr_36: &'static str,
pr_3_p_5: &'static str,
pr_4: &'static str,
pr_40: &'static str,
pr_44: &'static str,
pr_48: &'static str,
pr_5: &'static str,
pr_52: &'static str,
pr_56: &'static str,
pr_6: &'static str,
pr_60: &'static str,
pr_64: &'static str,
pr_7: &'static str,
pr_72: &'static str,
pr_8: &'static str,
pr_80: &'static str,
pr_9: &'static str,
pr_96: &'static str,
pr_px: &'static str,
pt_0: &'static str,
pt_0_p_5: &'static str,
pt_1: &'static str,
pt_10: &'static str,
pt_11: &'static str,
pt_12: &'static str,
pt_14: &'static str,
pt_16: &'static str,
pt_1_p_5: &'static str,
pt_2: &'static str,
pt_20: &'static str,
pt_24: &'static str,
pt_28: &'static str,
pt_2_p_5: &'static str,
pt_3: &'static str,
pt_32: &'static str,
pt_36: &'static str,
pt_3_p_5: &'static str,
pt_4: &'static str,
pt_40: &'static str,
pt_44: &'static str,
pt_48: &'static str,
pt_5: &'static str,
pt_52: &'static str,
pt_56: &'static str,
pt_6: &'static str,
pt_60: &'static str,
pt_64: &'static str,
pt_7: &'static str,
pt_72: &'static str,
pt_8: &'static str,
pt_80: &'static str,
pt_9: &'static str,
pt_96: &'static str,
pt_px: &'static str,
px_0: &'static str,
px_0_p_5: &'static str,
px_1: &'static str,
px_10: &'static str,
px_11: &'static str,
px_12: &'static str,
px_14: &'static str,
px_16: &'static str,
px_1_p_5: &'static str,
px_2: &'static str,
px_20: &'static str,
px_24: &'static str,
px_28: &'static str,
px_2_p_5: &'static str,
px_3: &'static str,
px_32: &'static str,
px_36: &'static str,
px_3_p_5: &'static str,
px_4: &'static str,
px_40: &'static str,
px_44: &'static str,
px_48: &'static str,
px_5: &'static str,
px_52: &'static str,
px_56: &'static str,
px_6: &'static str,
px_60: &'static str,
px_64: &'static str,
px_7: &'static str,
px_72: &'static str,
px_8: &'static str,
px_80: &'static str,
px_9: &'static str,
px_96: &'static str,
px_px: &'static str,
py_0: &'static str,
py_0_p_5: &'static str,
py_1: &'static str,
py_10: &'static str,
py_11: &'static str,
py_12: &'static str,
py_14: &'static str,
py_16: &'static str,
py_1_p_5: &'static str,
py_2: &'static str,
py_20: &'static str,
py_24: &'static str,
py_28: &'static str,
py_2_p_5: &'static str,
py_3: &'static str,
py_32: &'static str,
py_36: &'static str,
py_3_p_5: &'static str,
py_4: &'static str,
py_40: &'static str,
py_44: &'static str,
py_48: &'static str,
py_5: &'static str,
py_52: &'static str,
py_56: &'static str,
py_6: &'static str,
py_60: &'static str,
py_64: &'static str,
py_7: &'static str,
py_72: &'static str,
py_8: &'static str,
py_80: &'static str,
py_9: &'static str,
py_96: &'static str,
py_px: &'static str,
}
pub struct Svg {
fill_amber_100: &'static str,
fill_amber_200: &'static str,
fill_amber_300: &'static str,
fill_amber_400: &'static str,
fill_amber_50: &'static str,
fill_amber_500: &'static str,
fill_amber_600: &'static str,
fill_amber_700: &'static str,
fill_amber_800: &'static str,
fill_amber_900: &'static str,
fill_black: &'static str,
fill_blue_100: &'static str,
fill_blue_200: &'static str,
fill_blue_300: &'static str,
fill_blue_400: &'static str,
fill_blue_50: &'static str,
fill_blue_500: &'static str,
fill_blue_600: &'static str,
fill_blue_700: &'static str,
fill_blue_800: &'static str,
fill_blue_900: &'static str,
fill_current: &'static str,
fill_cyan_100: &'static str,
fill_cyan_200: &'static str,
fill_cyan_300: &'static str,
fill_cyan_400: &'static str,
fill_cyan_50: &'static str,
fill_cyan_500: &'static str,
fill_cyan_600: &'static str,
fill_cyan_700: &'static str,
fill_cyan_800: &'static str,
fill_cyan_900: &'static str,
fill_emerald_100: &'static str,
fill_emerald_200: &'static str,
fill_emerald_300: &'static str,
fill_emerald_400: &'static str,
fill_emerald_50: &'static str,
fill_emerald_500: &'static str,
fill_emerald_600: &'static str,
fill_emerald_700: &'static str,
fill_emerald_800: &'static str,
fill_emerald_900: &'static str,
fill_fuchsia_100: &'static str,
fill_fuchsia_200: &'static str,
fill_fuchsia_300: &'static str,
fill_fuchsia_400: &'static str,
fill_fuchsia_50: &'static str,
fill_fuchsia_500: &'static str,
fill_fuchsia_600: &'static str,
fill_fuchsia_700: &'static str,
fill_fuchsia_800: &'static str,
fill_fuchsia_900: &'static str,
fill_gray_100: &'static str,
fill_gray_200: &'static str,
fill_gray_300: &'static str,
fill_gray_400: &'static str,
fill_gray_50: &'static str,
fill_gray_500: &'static str,
fill_gray_600: &'static str,
fill_gray_700: &'static str,
fill_gray_800: &'static str,
fill_gray_900: &'static str,
fill_green_100: &'static str,
fill_green_200: &'static str,
fill_green_300: &'static str,
fill_green_400: &'static str,
fill_green_50: &'static str,
fill_green_500: &'static str,
fill_green_600: &'static str,
fill_green_700: &'static str,
fill_green_800: &'static str,
fill_green_900: &'static str,
fill_indigo_100: &'static str,
fill_indigo_200: &'static str,
fill_indigo_300: &'static str,
fill_indigo_400: &'static str,
fill_indigo_50: &'static str,
fill_indigo_500: &'static str,
fill_indigo_600: &'static str,
fill_indigo_700: &'static str,
fill_indigo_800: &'static str,
fill_indigo_900: &'static str,
fill_inherit: &'static str,
fill_lime_100: &'static str,
fill_lime_200: &'static str,
fill_lime_300: &'static str,
fill_lime_400: &'static str,
fill_lime_50: &'static str,
fill_lime_500: &'static str,
fill_lime_600: &'static str,
fill_lime_700: &'static str,
fill_lime_800: &'static str,
fill_lime_900: &'static str,
fill_neutral_100: &'static str,
fill_neutral_200: &'static str,
fill_neutral_300: &'static str,
fill_neutral_400: &'static str,
fill_neutral_50: &'static str,
fill_neutral_500: &'static str,
fill_neutral_600: &'static str,
fill_neutral_700: &'static str,
fill_neutral_800: &'static str,
fill_neutral_900: &'static str,
fill_orange_100: &'static str,
fill_orange_200: &'static str,
fill_orange_300: &'static str,
fill_orange_400: &'static str,
fill_orange_50: &'static str,
fill_orange_500: &'static str,
fill_orange_600: &'static str,
fill_orange_700: &'static str,
fill_orange_800: &'static str,
fill_orange_900: &'static str,
fill_pink_100: &'static str,
fill_pink_200: &'static str,
fill_pink_300: &'static str,
fill_pink_400: &'static str,
fill_pink_50: &'static str,
fill_pink_500: &'static str,
fill_pink_600: &'static str,
fill_pink_700: &'static str,
fill_pink_800: &'static str,
fill_pink_900: &'static str,
fill_purple_100: &'static str,
fill_purple_200: &'static str,
fill_purple_300: &'static str,
fill_purple_400: &'static str,
fill_purple_50: &'static str,
fill_purple_500: &'static str,
fill_purple_600: &'static str,
fill_purple_700: &'static str,
fill_purple_800: &'static str,
fill_purple_900: &'static str,
fill_red_100: &'static str,
fill_red_200: &'static str,
fill_red_300: &'static str,
fill_red_400: &'static str,
fill_red_50: &'static str,
fill_red_500: &'static str,
fill_red_600: &'static str,
fill_red_700: &'static str,
fill_red_800: &'static str,
fill_red_900: &'static str,
fill_rose_100: &'static str,
fill_rose_200: &'static str,
fill_rose_300: &'static str,
fill_rose_400: &'static str,
fill_rose_50: &'static str,
fill_rose_500: &'static str,
fill_rose_600: &'static str,
fill_rose_700: &'static str,
fill_rose_800: &'static str,
fill_rose_900: &'static str,
fill_sky_100: &'static str,
fill_sky_200: &'static str,
fill_sky_300: &'static str,
fill_sky_400: &'static str,
fill_sky_50: &'static str,
fill_sky_500: &'static str,
fill_sky_600: &'static str,
fill_sky_700: &'static str,
fill_sky_800: &'static str,
fill_sky_900: &'static str,
fill_slate_100: &'static str,
fill_slate_200: &'static str,
fill_slate_300: &'static str,
fill_slate_400: &'static str,
fill_slate_50: &'static str,
fill_slate_500: &'static str,
fill_slate_600: &'static str,
fill_slate_700: &'static str,
fill_slate_800: &'static str,
fill_slate_900: &'static str,
fill_stone_100: &'static str,
fill_stone_200: &'static str,
fill_stone_300: &'static str,
fill_stone_400: &'static str,
fill_stone_50: &'static str,
fill_stone_500: &'static str,
fill_stone_600: &'static str,
fill_stone_700: &'static str,
fill_stone_800: &'static str,
fill_stone_900: &'static str,
fill_teal_100: &'static str,
fill_teal_200: &'static str,
fill_teal_300: &'static str,
fill_teal_400: &'static str,
fill_teal_50: &'static str,
fill_teal_500: &'static str,
fill_teal_600: &'static str,
fill_teal_700: &'static str,
fill_teal_800: &'static str,
fill_teal_900: &'static str,
fill_transparent: &'static str,
fill_violet_100: &'static str,
fill_violet_200: &'static str,
fill_violet_300: &'static str,
fill_violet_400: &'static str,
fill_violet_50: &'static str,
fill_violet_500: &'static str,
fill_violet_600: &'static str,
fill_violet_700: &'static str,
fill_violet_800: &'static str,
fill_violet_900: &'static str,
fill_white: &'static str,
fill_yellow_100: &'static str,
fill_yellow_200: &'static str,
fill_yellow_300: &'static str,
fill_yellow_400: &'static str,
fill_yellow_50: &'static str,
fill_yellow_500: &'static str,
fill_yellow_600: &'static str,
fill_yellow_700: &'static str,
fill_yellow_800: &'static str,
fill_yellow_900: &'static str,
fill_zinc_100: &'static str,
fill_zinc_200: &'static str,
fill_zinc_300: &'static str,
fill_zinc_400: &'static str,
fill_zinc_50: &'static str,
fill_zinc_500: &'static str,
fill_zinc_600: &'static str,
fill_zinc_700: &'static str,
fill_zinc_800: &'static str,
fill_zinc_900: &'static str,
stroke_0: &'static str,
stroke_1: &'static str,
stroke_2: &'static str,
stroke_amber_100: &'static str,
stroke_amber_200: &'static str,
stroke_amber_300: &'static str,
stroke_amber_400: &'static str,
stroke_amber_50: &'static str,
stroke_amber_500: &'static str,
stroke_amber_600: &'static str,
stroke_amber_700: &'static str,
stroke_amber_800: &'static str,
stroke_amber_900: &'static str,
stroke_black: &'static str,
stroke_blue_100: &'static str,
stroke_blue_200: &'static str,
stroke_blue_300: &'static str,
stroke_blue_400: &'static str,
stroke_blue_50: &'static str,
stroke_blue_500: &'static str,
stroke_blue_600: &'static str,
stroke_blue_700: &'static str,
stroke_blue_800: &'static str,
stroke_blue_900: &'static str,
stroke_current: &'static str,
stroke_cyan_100: &'static str,
stroke_cyan_200: &'static str,
stroke_cyan_300: &'static str,
stroke_cyan_400: &'static str,
stroke_cyan_50: &'static str,
stroke_cyan_500: &'static str,
stroke_cyan_600: &'static str,
stroke_cyan_700: &'static str,
stroke_cyan_800: &'static str,
stroke_cyan_900: &'static str,
stroke_emerald_100: &'static str,
stroke_emerald_200: &'static str,
stroke_emerald_300: &'static str,
stroke_emerald_400: &'static str,
stroke_emerald_50: &'static str,
stroke_emerald_500: &'static str,
stroke_emerald_600: &'static str,
stroke_emerald_700: &'static str,
stroke_emerald_800: &'static str,
stroke_emerald_900: &'static str,
stroke_fuchsia_100: &'static str,
stroke_fuchsia_200: &'static str,
stroke_fuchsia_300: &'static str,
stroke_fuchsia_400: &'static str,
stroke_fuchsia_50: &'static str,
stroke_fuchsia_500: &'static str,
stroke_fuchsia_600: &'static str,
stroke_fuchsia_700: &'static str,
stroke_fuchsia_800: &'static str,
stroke_fuchsia_900: &'static str,
stroke_gray_100: &'static str,
stroke_gray_200: &'static str,
stroke_gray_300: &'static str,
stroke_gray_400: &'static str,
stroke_gray_50: &'static str,
stroke_gray_500: &'static str,
stroke_gray_600: &'static str,
stroke_gray_700: &'static str,
stroke_gray_800: &'static str,
stroke_gray_900: &'static str,
stroke_green_100: &'static str,
stroke_green_200: &'static str,
stroke_green_300: &'static str,
stroke_green_400: &'static str,
stroke_green_50: &'static str,
stroke_green_500: &'static str,
stroke_green_600: &'static str,
stroke_green_700: &'static str,
stroke_green_800: &'static str,
stroke_green_900: &'static str,
stroke_indigo_100: &'static str,
stroke_indigo_200: &'static str,
stroke_indigo_300: &'static str,
stroke_indigo_400: &'static str,
stroke_indigo_50: &'static str,
stroke_indigo_500: &'static str,
stroke_indigo_600: &'static str,
stroke_indigo_700: &'static str,
stroke_indigo_800: &'static str,
stroke_indigo_900: &'static str,
stroke_inherit: &'static str,
stroke_lime_100: &'static str,
stroke_lime_200: &'static str,
stroke_lime_300: &'static str,
stroke_lime_400: &'static str,
stroke_lime_50: &'static str,
stroke_lime_500: &'static str,
stroke_lime_600: &'static str,
stroke_lime_700: &'static str,
stroke_lime_800: &'static str,
stroke_lime_900: &'static str,
stroke_neutral_100: &'static str,
stroke_neutral_200: &'static str,
stroke_neutral_300: &'static str,
stroke_neutral_400: &'static str,
stroke_neutral_50: &'static str,
stroke_neutral_500: &'static str,
stroke_neutral_600: &'static str,
stroke_neutral_700: &'static str,
stroke_neutral_800: &'static str,
stroke_neutral_900: &'static str,
stroke_orange_100: &'static str,
stroke_orange_200: &'static str,
stroke_orange_300: &'static str,
stroke_orange_400: &'static str,
stroke_orange_50: &'static str,
stroke_orange_500: &'static str,
stroke_orange_600: &'static str,
stroke_orange_700: &'static str,
stroke_orange_800: &'static str,
stroke_orange_900: &'static str,
stroke_pink_100: &'static str,
stroke_pink_200: &'static str,
stroke_pink_300: &'static str,
stroke_pink_400: &'static str,
stroke_pink_50: &'static str,
stroke_pink_500: &'static str,
stroke_pink_600: &'static str,
stroke_pink_700: &'static str,
stroke_pink_800: &'static str,
stroke_pink_900: &'static str,
stroke_purple_100: &'static str,
stroke_purple_200: &'static str,
stroke_purple_300: &'static str,
stroke_purple_400: &'static str,
stroke_purple_50: &'static str,
stroke_purple_500: &'static str,
stroke_purple_600: &'static str,
stroke_purple_700: &'static str,
stroke_purple_800: &'static str,
stroke_purple_900: &'static str,
stroke_red_100: &'static str,
stroke_red_200: &'static str,
stroke_red_300: &'static str,
stroke_red_400: &'static str,
stroke_red_50: &'static str,
stroke_red_500: &'static str,
stroke_red_600: &'static str,
stroke_red_700: &'static str,
stroke_red_800: &'static str,
stroke_red_900: &'static str,
stroke_rose_100: &'static str,
stroke_rose_200: &'static str,
stroke_rose_300: &'static str,
stroke_rose_400: &'static str,
stroke_rose_50: &'static str,
stroke_rose_500: &'static str,
stroke_rose_600: &'static str,
stroke_rose_700: &'static str,
stroke_rose_800: &'static str,
stroke_rose_900: &'static str,
stroke_sky_100: &'static str,
stroke_sky_200: &'static str,
stroke_sky_300: &'static str,
stroke_sky_400: &'static str,
stroke_sky_50: &'static str,
stroke_sky_500: &'static str,
stroke_sky_600: &'static str,
stroke_sky_700: &'static str,
stroke_sky_800: &'static str,
stroke_sky_900: &'static str,
stroke_slate_100: &'static str,
stroke_slate_200: &'static str,
stroke_slate_300: &'static str,
stroke_slate_400: &'static str,
stroke_slate_50: &'static str,
stroke_slate_500: &'static str,
stroke_slate_600: &'static str,
stroke_slate_700: &'static str,
stroke_slate_800: &'static str,
stroke_slate_900: &'static str,
stroke_stone_100: &'static str,
stroke_stone_200: &'static str,
stroke_stone_300: &'static str,
stroke_stone_400: &'static str,
stroke_stone_50: &'static str,
stroke_stone_500: &'static str,
stroke_stone_600: &'static str,
stroke_stone_700: &'static str,
stroke_stone_800: &'static str,
stroke_stone_900: &'static str,
stroke_teal_100: &'static str,
stroke_teal_200: &'static str,
stroke_teal_300: &'static str,
stroke_teal_400: &'static str,
stroke_teal_50: &'static str,
stroke_teal_500: &'static str,
stroke_teal_600: &'static str,
stroke_teal_700: &'static str,
stroke_teal_800: &'static str,
stroke_teal_900: &'static str,
stroke_transparent: &'static str,
stroke_violet_100: &'static str,
stroke_violet_200: &'static str,
stroke_violet_300: &'static str,
stroke_violet_400: &'static str,
stroke_violet_50: &'static str,
stroke_violet_500: &'static str,
stroke_violet_600: &'static str,
stroke_violet_700: &'static str,
stroke_violet_800: &'static str,
stroke_violet_900: &'static str,
stroke_white: &'static str,
stroke_yellow_100: &'static str,
stroke_yellow_200: &'static str,
stroke_yellow_300: &'static str,
stroke_yellow_400: &'static str,
stroke_yellow_50: &'static str,
stroke_yellow_500: &'static str,
stroke_yellow_600: &'static str,
stroke_yellow_700: &'static str,
stroke_yellow_800: &'static str,
stroke_yellow_900: &'static str,
stroke_zinc_100: &'static str,
stroke_zinc_200: &'static str,
stroke_zinc_300: &'static str,
stroke_zinc_400: &'static str,
stroke_zinc_50: &'static str,
stroke_zinc_500: &'static str,
stroke_zinc_600: &'static str,
stroke_zinc_700: &'static str,
stroke_zinc_800: &'static str,
stroke_zinc_900: &'static str,
}
pub struct Tables {
border_collapse: &'static str,
border_separate: &'static str,
table_auto: &'static str,
table_fixed: &'static str,
}
pub struct Transforms {
origin_bottom: &'static str,
origin_bottom_left: &'static str,
origin_bottom_right: &'static str,
origin_center: &'static str,
origin_left: &'static str,
origin_right: &'static str,
origin_top: &'static str,
origin_top_left: &'static str,
origin_top_right: &'static str,
rotate_0: &'static str,
rotate_1: &'static str,
rotate_12: &'static str,
rotate_180: &'static str,
rotate_2: &'static str,
rotate_3: &'static str,
rotate_45: &'static str,
rotate_6: &'static str,
rotate_90: &'static str,
scale_0: &'static str,
scale_100: &'static str,
scale_105: &'static str,
scale_110: &'static str,
scale_125: &'static str,
scale_150: &'static str,
scale_50: &'static str,
scale_75: &'static str,
scale_90: &'static str,
scale_95: &'static str,
scale_x_0: &'static str,
scale_x_100: &'static str,
scale_x_105: &'static str,
scale_x_110: &'static str,
scale_x_125: &'static str,
scale_x_150: &'static str,
scale_x_50: &'static str,
scale_x_75: &'static str,
scale_x_90: &'static str,
scale_x_95: &'static str,
scale_y_0: &'static str,
scale_y_100: &'static str,
scale_y_105: &'static str,
scale_y_110: &'static str,
scale_y_125: &'static str,
scale_y_150: &'static str,
scale_y_50: &'static str,
scale_y_75: &'static str,
scale_y_90: &'static str,
scale_y_95: &'static str,
skew_x_0: &'static str,
skew_x_1: &'static str,
skew_x_12: &'static str,
skew_x_2: &'static str,
skew_x_3: &'static str,
skew_x_6: &'static str,
skew_y_0: &'static str,
skew_y_1: &'static str,
skew_y_12: &'static str,
skew_y_2: &'static str,
skew_y_3: &'static str,
skew_y_6: &'static str,
transform: &'static str,
transform_cpu: &'static str,
transform_gpu: &'static str,
transform_none: &'static str,
translate_x_0: &'static str,
translate_x_0_p_5: &'static str,
translate_x_1: &'static str,
translate_x_10: &'static str,
translate_x_11: &'static str,
translate_x_12: &'static str,
translate_x_14: &'static str,
translate_x_16: &'static str,
translate_x_1_of_2: &'static str,
translate_x_1_of_3: &'static str,
translate_x_1_of_4: &'static str,
translate_x_1_p_5: &'static str,
translate_x_2: &'static str,
translate_x_20: &'static str,
translate_x_24: &'static str,
translate_x_28: &'static str,
translate_x_2_of_3: &'static str,
translate_x_2_of_4: &'static str,
translate_x_2_p_5: &'static str,
translate_x_3: &'static str,
translate_x_32: &'static str,
translate_x_36: &'static str,
translate_x_3_of_4: &'static str,
translate_x_3_p_5: &'static str,
translate_x_4: &'static str,
translate_x_40: &'static str,
translate_x_44: &'static str,
translate_x_48: &'static str,
translate_x_5: &'static str,
translate_x_52: &'static str,
translate_x_56: &'static str,
translate_x_6: &'static str,
translate_x_60: &'static str,
translate_x_64: &'static str,
translate_x_7: &'static str,
translate_x_72: &'static str,
translate_x_8: &'static str,
translate_x_80: &'static str,
translate_x_9: &'static str,
translate_x_96: &'static str,
translate_x_full: &'static str,
translate_x_px: &'static str,
translate_y_0: &'static str,
translate_y_0_p_5: &'static str,
translate_y_1: &'static str,
translate_y_10: &'static str,
translate_y_11: &'static str,
translate_y_12: &'static str,
translate_y_14: &'static str,
translate_y_16: &'static str,
translate_y_1_of_2: &'static str,
translate_y_1_of_3: &'static str,
translate_y_1_of_4: &'static str,
translate_y_1_p_5: &'static str,
translate_y_2: &'static str,
translate_y_20: &'static str,
translate_y_24: &'static str,
translate_y_28: &'static str,
translate_y_2_of_3: &'static str,
translate_y_2_of_4: &'static str,
translate_y_2_p_5: &'static str,
translate_y_3: &'static str,
translate_y_32: &'static str,
translate_y_36: &'static str,
translate_y_3_of_4: &'static str,
translate_y_3_p_5: &'static str,
translate_y_4: &'static str,
translate_y_40: &'static str,
translate_y_44: &'static str,
translate_y_48: &'static str,
translate_y_5: &'static str,
translate_y_52: &'static str,
translate_y_56: &'static str,
translate_y_6: &'static str,
translate_y_60: &'static str,
translate_y_64: &'static str,
translate_y_7: &'static str,
translate_y_72: &'static str,
translate_y_8: &'static str,
translate_y_80: &'static str,
translate_y_9: &'static str,
translate_y_96: &'static str,
translate_y_full: &'static str,
translate_y_px: &'static str,
}
pub struct Typography {
align_baseline: &'static str,
align_bottom: &'static str,
align_middle: &'static str,
align_sub: &'static str,
align_super: &'static str,
align_text_bottom: &'static str,
align_text_top: &'static str,
align_top: &'static str,
antialiased: &'static str,
break_all: &'static str,
break_normal: &'static str,
break_words: &'static str,
capitalize: &'static str,
content_none: &'static str,
decoration_0: &'static str,
decoration_1: &'static str,
decoration_2: &'static str,
decoration_4: &'static str,
decoration_8: &'static str,
decoration_amber_100: &'static str,
decoration_amber_200: &'static str,
decoration_amber_300: &'static str,
decoration_amber_400: &'static str,
decoration_amber_50: &'static str,
decoration_amber_500: &'static str,
decoration_amber_600: &'static str,
decoration_amber_700: &'static str,
decoration_amber_800: &'static str,
decoration_amber_900: &'static str,
decoration_auto: &'static str,
decoration_black: &'static str,
decoration_blue_100: &'static str,
decoration_blue_200: &'static str,
decoration_blue_300: &'static str,
decoration_blue_400: &'static str,
decoration_blue_50: &'static str,
decoration_blue_500: &'static str,
decoration_blue_600: &'static str,
decoration_blue_700: &'static str,
decoration_blue_800: &'static str,
decoration_blue_900: &'static str,
decoration_current: &'static str,
decoration_cyan_100: &'static str,
decoration_cyan_200: &'static str,
decoration_cyan_300: &'static str,
decoration_cyan_400: &'static str,
decoration_cyan_50: &'static str,
decoration_cyan_500: &'static str,
decoration_cyan_600: &'static str,
decoration_cyan_700: &'static str,
decoration_cyan_800: &'static str,
decoration_cyan_900: &'static str,
decoration_dashed: &'static str,
decoration_dotted: &'static str,
decoration_double: &'static str,
decoration_emerald_100: &'static str,
decoration_emerald_200: &'static str,
decoration_emerald_300: &'static str,
decoration_emerald_400: &'static str,
decoration_emerald_50: &'static str,
decoration_emerald_500: &'static str,
decoration_emerald_600: &'static str,
decoration_emerald_700: &'static str,
decoration_emerald_800: &'static str,
decoration_emerald_900: &'static str,
decoration_from_font: &'static str,
decoration_fuchsia_100: &'static str,
decoration_fuchsia_200: &'static str,
decoration_fuchsia_300: &'static str,
decoration_fuchsia_400: &'static str,
decoration_fuchsia_50: &'static str,
decoration_fuchsia_500: &'static str,
decoration_fuchsia_600: &'static str,
decoration_fuchsia_700: &'static str,
decoration_fuchsia_800: &'static str,
decoration_fuchsia_900: &'static str,
decoration_gray_100: &'static str,
decoration_gray_200: &'static str,
decoration_gray_300: &'static str,
decoration_gray_400: &'static str,
decoration_gray_50: &'static str,
decoration_gray_500: &'static str,
decoration_gray_600: &'static str,
decoration_gray_700: &'static str,
decoration_gray_800: &'static str,
decoration_gray_900: &'static str,
decoration_green_100: &'static str,
decoration_green_200: &'static str,
decoration_green_300: &'static str,
decoration_green_400: &'static str,
decoration_green_50: &'static str,
decoration_green_500: &'static str,
decoration_green_600: &'static str,
decoration_green_700: &'static str,
decoration_green_800: &'static str,
decoration_green_900: &'static str,
decoration_indigo_100: &'static str,
decoration_indigo_200: &'static str,
decoration_indigo_300: &'static str,
decoration_indigo_400: &'static str,
decoration_indigo_50: &'static str,
decoration_indigo_500: &'static str,
decoration_indigo_600: &'static str,
decoration_indigo_700: &'static str,
decoration_indigo_800: &'static str,
decoration_indigo_900: &'static str,
decoration_inherit: &'static str,
decoration_lime_100: &'static str,
decoration_lime_200: &'static str,
decoration_lime_300: &'static str,
decoration_lime_400: &'static str,
decoration_lime_50: &'static str,
decoration_lime_500: &'static str,
decoration_lime_600: &'static str,
decoration_lime_700: &'static str,
decoration_lime_800: &'static str,
decoration_lime_900: &'static str,
decoration_neutral_100: &'static str,
decoration_neutral_200: &'static str,
decoration_neutral_300: &'static str,
decoration_neutral_400: &'static str,
decoration_neutral_50: &'static str,
decoration_neutral_500: &'static str,
decoration_neutral_600: &'static str,
decoration_neutral_700: &'static str,
decoration_neutral_800: &'static str,
decoration_neutral_900: &'static str,
decoration_orange_100: &'static str,
decoration_orange_200: &'static str,
decoration_orange_300: &'static str,
decoration_orange_400: &'static str,
decoration_orange_50: &'static str,
decoration_orange_500: &'static str,
decoration_orange_600: &'static str,
decoration_orange_700: &'static str,
decoration_orange_800: &'static str,
decoration_orange_900: &'static str,
decoration_pink_100: &'static str,
decoration_pink_200: &'static str,
decoration_pink_300: &'static str,
decoration_pink_400: &'static str,
decoration_pink_50: &'static str,
decoration_pink_500: &'static str,
decoration_pink_600: &'static str,
decoration_pink_700: &'static str,
decoration_pink_800: &'static str,
decoration_pink_900: &'static str,
decoration_purple_100: &'static str,
decoration_purple_200: &'static str,
decoration_purple_300: &'static str,
decoration_purple_400: &'static str,
decoration_purple_50: &'static str,
decoration_purple_500: &'static str,
decoration_purple_600: &'static str,
decoration_purple_700: &'static str,
decoration_purple_800: &'static str,
decoration_purple_900: &'static str,
decoration_red_100: &'static str,
decoration_red_200: &'static str,
decoration_red_300: &'static str,
decoration_red_400: &'static str,
decoration_red_50: &'static str,
decoration_red_500: &'static str,
decoration_red_600: &'static str,
decoration_red_700: &'static str,
decoration_red_800: &'static str,
decoration_red_900: &'static str,
decoration_rose_100: &'static str,
decoration_rose_200: &'static str,
decoration_rose_300: &'static str,
decoration_rose_400: &'static str,
decoration_rose_50: &'static str,
decoration_rose_500: &'static str,
decoration_rose_600: &'static str,
decoration_rose_700: &'static str,
decoration_rose_800: &'static str,
decoration_rose_900: &'static str,
decoration_sky_100: &'static str,
decoration_sky_200: &'static str,
decoration_sky_300: &'static str,
decoration_sky_400: &'static str,
decoration_sky_50: &'static str,
decoration_sky_500: &'static str,
decoration_sky_600: &'static str,
decoration_sky_700: &'static str,
decoration_sky_800: &'static str,
decoration_sky_900: &'static str,
decoration_slate_100: &'static str,
decoration_slate_200: &'static str,
decoration_slate_300: &'static str,
decoration_slate_400: &'static str,
decoration_slate_50: &'static str,
decoration_slate_500: &'static str,
decoration_slate_600: &'static str,
decoration_slate_700: &'static str,
decoration_slate_800: &'static str,
decoration_slate_900: &'static str,
decoration_solid: &'static str,
decoration_stone_100: &'static str,
decoration_stone_200: &'static str,
decoration_stone_300: &'static str,
decoration_stone_400: &'static str,
decoration_stone_50: &'static str,
decoration_stone_500: &'static str,
decoration_stone_600: &'static str,
decoration_stone_700: &'static str,
decoration_stone_800: &'static str,
decoration_stone_900: &'static str,
decoration_teal_100: &'static str,
decoration_teal_200: &'static str,
decoration_teal_300: &'static str,
decoration_teal_400: &'static str,
decoration_teal_50: &'static str,
decoration_teal_500: &'static str,
decoration_teal_600: &'static str,
decoration_teal_700: &'static str,
decoration_teal_800: &'static str,
decoration_teal_900: &'static str,
decoration_transparent: &'static str,
decoration_violet_100: &'static str,
decoration_violet_200: &'static str,
decoration_violet_300: &'static str,
decoration_violet_400: &'static str,
decoration_violet_50: &'static str,
decoration_violet_500: &'static str,
decoration_violet_600: &'static str,
decoration_violet_700: &'static str,
decoration_violet_800: &'static str,
decoration_violet_900: &'static str,
decoration_wavy: &'static str,
decoration_white: &'static str,
decoration_yellow_100: &'static str,
decoration_yellow_200: &'static str,
decoration_yellow_300: &'static str,
decoration_yellow_400: &'static str,
decoration_yellow_50: &'static str,
decoration_yellow_500: &'static str,
decoration_yellow_600: &'static str,
decoration_yellow_700: &'static str,
decoration_yellow_800: &'static str,
decoration_yellow_900: &'static str,
decoration_zinc_100: &'static str,
decoration_zinc_200: &'static str,
decoration_zinc_300: &'static str,
decoration_zinc_400: &'static str,
decoration_zinc_50: &'static str,
decoration_zinc_500: &'static str,
decoration_zinc_600: &'static str,
decoration_zinc_700: &'static str,
decoration_zinc_800: &'static str,
decoration_zinc_900: &'static str,
diagonal_fractions: &'static str,
font_black: &'static str,
font_bold: &'static str,
font_extrabold: &'static str,
font_extralight: &'static str,
font_light: &'static str,
font_medium: &'static str,
font_mono: &'static str,
font_normal: &'static str,
font_sans: &'static str,
font_semibold: &'static str,
font_serif: &'static str,
font_thin: &'static str,
indent_0: &'static str,
indent_0_p_5: &'static str,
indent_1: &'static str,
indent_10: &'static str,
indent_11: &'static str,
indent_12: &'static str,
indent_14: &'static str,
indent_16: &'static str,
indent_1_p_5: &'static str,
indent_2: &'static str,
indent_20: &'static str,
indent_24: &'static str,
indent_28: &'static str,
indent_2_p_5: &'static str,
indent_3: &'static str,
indent_32: &'static str,
indent_36: &'static str,
indent_3_p_5: &'static str,
indent_4: &'static str,
indent_40: &'static str,
indent_44: &'static str,
indent_48: &'static str,
indent_5: &'static str,
indent_52: &'static str,
indent_56: &'static str,
indent_6: &'static str,
indent_60: &'static str,
indent_64: &'static str,
indent_7: &'static str,
indent_72: &'static str,
indent_8: &'static str,
indent_80: &'static str,
indent_9: &'static str,
indent_96: &'static str,
indent_px: &'static str,
italic: &'static str,
leading_10: &'static str,
leading_3: &'static str,
leading_4: &'static str,
leading_5: &'static str,
leading_6: &'static str,
leading_7: &'static str,
leading_8: &'static str,
leading_9: &'static str,
leading_loose: &'static str,
leading_none: &'static str,
leading_normal: &'static str,
leading_relaxed: &'static str,
leading_snug: &'static str,
leading_tight: &'static str,
line_through: &'static str,
lining_nums: &'static str,
list_decimal: &'static str,
list_disc: &'static str,
list_inside: &'static str,
list_none: &'static str,
list_outside: &'static str,
lowercase: &'static str,
no_underline: &'static str,
normal_case: &'static str,
normal_nums: &'static str,
not_italic: &'static str,
oldstyle_nums: &'static str,
ordinal: &'static str,
overline: &'static str,
proportional_nums: &'static str,
slashed_zero: &'static str,
stacked_fractions: &'static str,
subpixel_antialiased: &'static str,
tabular_nums: &'static str,
text_2xl: &'static str,
text_3xl: &'static str,
text_4xl: &'static str,
text_5xl: &'static str,
text_6xl: &'static str,
text_7xl: &'static str,
text_8xl: &'static str,
text_9xl: &'static str,
text_amber_100: &'static str,
text_amber_200: &'static str,
text_amber_300: &'static str,
text_amber_400: &'static str,
text_amber_50: &'static str,
text_amber_500: &'static str,
text_amber_600: &'static str,
text_amber_700: &'static str,
text_amber_800: &'static str,
text_amber_900: &'static str,
text_base: &'static str,
text_black: &'static str,
text_blue_100: &'static str,
text_blue_200: &'static str,
text_blue_300: &'static str,
text_blue_400: &'static str,
text_blue_50: &'static str,
text_blue_500: &'static str,
text_blue_600: &'static str,
text_blue_700: &'static str,
text_blue_800: &'static str,
text_blue_900: &'static str,
text_center: &'static str,
text_clip: &'static str,
text_current: &'static str,
text_cyan_100: &'static str,
text_cyan_200: &'static str,
text_cyan_300: &'static str,
text_cyan_400: &'static str,
text_cyan_50: &'static str,
text_cyan_500: &'static str,
text_cyan_600: &'static str,
text_cyan_700: &'static str,
text_cyan_800: &'static str,
text_cyan_900: &'static str,
text_ellipsis: &'static str,
text_emerald_100: &'static str,
text_emerald_200: &'static str,
text_emerald_300: &'static str,
text_emerald_400: &'static str,
text_emerald_50: &'static str,
text_emerald_500: &'static str,
text_emerald_600: &'static str,
text_emerald_700: &'static str,
text_emerald_800: &'static str,
text_emerald_900: &'static str,
text_fuchsia_100: &'static str,
text_fuchsia_200: &'static str,
text_fuchsia_300: &'static str,
text_fuchsia_400: &'static str,
text_fuchsia_50: &'static str,
text_fuchsia_500: &'static str,
text_fuchsia_600: &'static str,
text_fuchsia_700: &'static str,
text_fuchsia_800: &'static str,
text_fuchsia_900: &'static str,
text_gray_100: &'static str,
text_gray_200: &'static str,
text_gray_300: &'static str,
text_gray_400: &'static str,
text_gray_50: &'static str,
text_gray_500: &'static str,
text_gray_600: &'static str,
text_gray_700: &'static str,
text_gray_800: &'static str,
text_gray_900: &'static str,
text_green_100: &'static str,
text_green_200: &'static str,
text_green_300: &'static str,
text_green_400: &'static str,
text_green_50: &'static str,
text_green_500: &'static str,
text_green_600: &'static str,
text_green_700: &'static str,
text_green_800: &'static str,
text_green_900: &'static str,
text_indigo_100: &'static str,
text_indigo_200: &'static str,
text_indigo_300: &'static str,
text_indigo_400: &'static str,
text_indigo_50: &'static str,
text_indigo_500: &'static str,
text_indigo_600: &'static str,
text_indigo_700: &'static str,
text_indigo_800: &'static str,
text_indigo_900: &'static str,
text_inherit: &'static str,
text_justify: &'static str,
text_left: &'static str,
text_lg: &'static str,
text_lime_100: &'static str,
text_lime_200: &'static str,
text_lime_300: &'static str,
text_lime_400: &'static str,
text_lime_50: &'static str,
text_lime_500: &'static str,
text_lime_600: &'static str,
text_lime_700: &'static str,
text_lime_800: &'static str,
text_lime_900: &'static str,
text_neutral_100: &'static str,
text_neutral_200: &'static str,
text_neutral_300: &'static str,
text_neutral_400: &'static str,
text_neutral_50: &'static str,
text_neutral_500: &'static str,
text_neutral_600: &'static str,
text_neutral_700: &'static str,
text_neutral_800: &'static str,
text_neutral_900: &'static str,
text_opacity_0: &'static str,
text_opacity_10: &'static str,
text_opacity_100: &'static str,
text_opacity_20: &'static str,
text_opacity_25: &'static str,
text_opacity_30: &'static str,
text_opacity_40: &'static str,
text_opacity_5: &'static str,
text_opacity_50: &'static str,
text_opacity_60: &'static str,
text_opacity_70: &'static str,
text_opacity_75: &'static str,
text_opacity_80: &'static str,
text_opacity_90: &'static str,
text_opacity_95: &'static str,
text_orange_100: &'static str,
text_orange_200: &'static str,
text_orange_300: &'static str,
text_orange_400: &'static str,
text_orange_50: &'static str,
text_orange_500: &'static str,
text_orange_600: &'static str,
text_orange_700: &'static str,
text_orange_800: &'static str,
text_orange_900: &'static str,
text_pink_100: &'static str,
text_pink_200: &'static str,
text_pink_300: &'static str,
text_pink_400: &'static str,
text_pink_50: &'static str,
text_pink_500: &'static str,
text_pink_600: &'static str,
text_pink_700: &'static str,
text_pink_800: &'static str,
text_pink_900: &'static str,
text_purple_100: &'static str,
text_purple_200: &'static str,
text_purple_300: &'static str,
text_purple_400: &'static str,
text_purple_50: &'static str,
text_purple_500: &'static str,
text_purple_600: &'static str,
text_purple_700: &'static str,
text_purple_800: &'static str,
text_purple_900: &'static str,
text_red_100: &'static str,
text_red_200: &'static str,
text_red_300: &'static str,
text_red_400: &'static str,
text_red_50: &'static str,
text_red_500: &'static str,
text_red_600: &'static str,
text_red_700: &'static str,
text_red_800: &'static str,
text_red_900: &'static str,
text_right: &'static str,
text_rose_100: &'static str,
text_rose_200: &'static str,
text_rose_300: &'static str,
text_rose_400: &'static str,
text_rose_50: &'static str,
text_rose_500: &'static str,
text_rose_600: &'static str,
text_rose_700: &'static str,
text_rose_800: &'static str,
text_rose_900: &'static str,
text_sky_100: &'static str,
text_sky_200: &'static str,
text_sky_300: &'static str,
text_sky_400: &'static str,
text_sky_50: &'static str,
text_sky_500: &'static str,
text_sky_600: &'static str,
text_sky_700: &'static str,
text_sky_800: &'static str,
text_sky_900: &'static str,
text_slate_100: &'static str,
text_slate_200: &'static str,
text_slate_300: &'static str,
text_slate_400: &'static str,
text_slate_50: &'static str,
text_slate_500: &'static str,
text_slate_600: &'static str,
text_slate_700: &'static str,
text_slate_800: &'static str,
text_slate_900: &'static str,
text_sm: &'static str,
text_stone_100: &'static str,
text_stone_200: &'static str,
text_stone_300: &'static str,
text_stone_400: &'static str,
text_stone_50: &'static str,
text_stone_500: &'static str,
text_stone_600: &'static str,
text_stone_700: &'static str,
text_stone_800: &'static str,
text_stone_900: &'static str,
text_teal_100: &'static str,
text_teal_200: &'static str,
text_teal_300: &'static str,
text_teal_400: &'static str,
text_teal_50: &'static str,
text_teal_500: &'static str,
text_teal_600: &'static str,
text_teal_700: &'static str,
text_teal_800: &'static str,
text_teal_900: &'static str,
text_transparent: &'static str,
text_violet_100: &'static str,
text_violet_200: &'static str,
text_violet_300: &'static str,
text_violet_400: &'static str,
text_violet_50: &'static str,
text_violet_500: &'static str,
text_violet_600: &'static str,
text_violet_700: &'static str,
text_violet_800: &'static str,
text_violet_900: &'static str,
text_white: &'static str,
text_xl: &'static str,
text_xs: &'static str,
text_yellow_100: &'static str,
text_yellow_200: &'static str,
text_yellow_300: &'static str,
text_yellow_400: &'static str,
text_yellow_50: &'static str,
text_yellow_500: &'static str,
text_yellow_600: &'static str,
text_yellow_700: &'static str,
text_yellow_800: &'static str,
text_yellow_900: &'static str,
text_zinc_100: &'static str,
text_zinc_200: &'static str,
text_zinc_300: &'static str,
text_zinc_400: &'static str,
text_zinc_50: &'static str,
text_zinc_500: &'static str,
text_zinc_600: &'static str,
text_zinc_700: &'static str,
text_zinc_800: &'static str,
text_zinc_900: &'static str,
tracking_normal: &'static str,
tracking_tight: &'static str,
tracking_tighter: &'static str,
tracking_wide: &'static str,
tracking_wider: &'static str,
tracking_widest: &'static str,
truncate: &'static str,
underline: &'static str,
underline_offset_0: &'static str,
underline_offset_1: &'static str,
underline_offset_2: &'static str,
underline_offset_4: &'static str,
underline_offset_8: &'static str,
underline_offset_auto: &'static str,
uppercase: &'static str,
whitespace_normal: &'static str,
whitespace_nowrap: &'static str,
whitespace_pre: &'static str,
whitespace_pre_line: &'static str,
whitespace_pre_wrap: &'static str,
}
pub static ACCESSIBILITY: Accessibility = Accessibility {
not_sr_only: "not-sr-only",
sr_only: "sr-only",
};
pub static ANIMATION: Animation = Animation {
animate_bounce: "animate-bounce",
animate_none: "animate-none",
animate_ping: "animate-ping",
animate_pulse: "animate-pulse",
animate_spin: "animate-spin",
delay_100: "delay-100",
delay_1000: "delay-1000",
delay_150: "delay-150",
delay_200: "delay-200",
delay_300: "delay-300",
delay_500: "delay-500",
delay_700: "delay-700",
delay_75: "delay-75",
duration_100: "duration-100",
duration_1000: "duration-1000",
duration_150: "duration-150",
duration_200: "duration-200",
duration_300: "duration-300",
duration_500: "duration-500",
duration_700: "duration-700",
duration_75: "duration-75",
ease_in: "ease-in",
ease_in_out: "ease-in-out",
ease_linear: "ease-linear",
ease_out: "ease-out",
transition: "transition",
transition_all: "transition-all",
transition_colors: "transition-colors",
transition_none: "transition-none",
transition_opacity: "transition-opacity",
transition_shadow: "transition-shadow",
transition_transform: "transition-transform",
};
pub static ASPECT: Aspect = Aspect {
aspect_h_auto: "aspect-h-auto",
aspect_h_square: "aspect-h-square",
aspect_h_video: "aspect-h-video",
aspect_none: "aspect-none",
aspect_w_auto: "aspect-w-auto",
aspect_w_square: "aspect-w-square",
aspect_w_video: "aspect-w-video",
};
pub static BACKGROUNDS: Backgrounds = Backgrounds {
bg_amber_100: "bg-amber-100",
bg_amber_200: "bg-amber-200",
bg_amber_300: "bg-amber-300",
bg_amber_400: "bg-amber-400",
bg_amber_50: "bg-amber-50",
bg_amber_500: "bg-amber-500",
bg_amber_600: "bg-amber-600",
bg_amber_700: "bg-amber-700",
bg_amber_800: "bg-amber-800",
bg_amber_900: "bg-amber-900",
bg_auto: "bg-auto",
bg_black: "bg-black",
bg_blue_100: "bg-blue-100",
bg_blue_200: "bg-blue-200",
bg_blue_300: "bg-blue-300",
bg_blue_400: "bg-blue-400",
bg_blue_50: "bg-blue-50",
bg_blue_500: "bg-blue-500",
bg_blue_600: "bg-blue-600",
bg_blue_700: "bg-blue-700",
bg_blue_800: "bg-blue-800",
bg_blue_900: "bg-blue-900",
bg_bottom: "bg-bottom",
bg_center: "bg-center",
bg_clip_border: "bg-clip-border",
bg_clip_content: "bg-clip-content",
bg_clip_padding: "bg-clip-padding",
bg_clip_text: "bg-clip-text",
bg_contain: "bg-contain",
bg_cover: "bg-cover",
bg_current: "bg-current",
bg_cyan_100: "bg-cyan-100",
bg_cyan_200: "bg-cyan-200",
bg_cyan_300: "bg-cyan-300",
bg_cyan_400: "bg-cyan-400",
bg_cyan_50: "bg-cyan-50",
bg_cyan_500: "bg-cyan-500",
bg_cyan_600: "bg-cyan-600",
bg_cyan_700: "bg-cyan-700",
bg_cyan_800: "bg-cyan-800",
bg_cyan_900: "bg-cyan-900",
bg_emerald_100: "bg-emerald-100",
bg_emerald_200: "bg-emerald-200",
bg_emerald_300: "bg-emerald-300",
bg_emerald_400: "bg-emerald-400",
bg_emerald_50: "bg-emerald-50",
bg_emerald_500: "bg-emerald-500",
bg_emerald_600: "bg-emerald-600",
bg_emerald_700: "bg-emerald-700",
bg_emerald_800: "bg-emerald-800",
bg_emerald_900: "bg-emerald-900",
bg_fixed: "bg-fixed",
bg_fuchsia_100: "bg-fuchsia-100",
bg_fuchsia_200: "bg-fuchsia-200",
bg_fuchsia_300: "bg-fuchsia-300",
bg_fuchsia_400: "bg-fuchsia-400",
bg_fuchsia_50: "bg-fuchsia-50",
bg_fuchsia_500: "bg-fuchsia-500",
bg_fuchsia_600: "bg-fuchsia-600",
bg_fuchsia_700: "bg-fuchsia-700",
bg_fuchsia_800: "bg-fuchsia-800",
bg_fuchsia_900: "bg-fuchsia-900",
bg_gradient_to_b: "bg-gradient-to-b",
bg_gradient_to_bl: "bg-gradient-to-bl",
bg_gradient_to_br: "bg-gradient-to-br",
bg_gradient_to_l: "bg-gradient-to-l",
bg_gradient_to_r: "bg-gradient-to-r",
bg_gradient_to_t: "bg-gradient-to-t",
bg_gradient_to_tl: "bg-gradient-to-tl",
bg_gradient_to_tr: "bg-gradient-to-tr",
bg_gray_100: "bg-gray-100",
bg_gray_200: "bg-gray-200",
bg_gray_300: "bg-gray-300",
bg_gray_400: "bg-gray-400",
bg_gray_50: "bg-gray-50",
bg_gray_500: "bg-gray-500",
bg_gray_600: "bg-gray-600",
bg_gray_700: "bg-gray-700",
bg_gray_800: "bg-gray-800",
bg_gray_900: "bg-gray-900",
bg_green_100: "bg-green-100",
bg_green_200: "bg-green-200",
bg_green_300: "bg-green-300",
bg_green_400: "bg-green-400",
bg_green_50: "bg-green-50",
bg_green_500: "bg-green-500",
bg_green_600: "bg-green-600",
bg_green_700: "bg-green-700",
bg_green_800: "bg-green-800",
bg_green_900: "bg-green-900",
bg_indigo_100: "bg-indigo-100",
bg_indigo_200: "bg-indigo-200",
bg_indigo_300: "bg-indigo-300",
bg_indigo_400: "bg-indigo-400",
bg_indigo_50: "bg-indigo-50",
bg_indigo_500: "bg-indigo-500",
bg_indigo_600: "bg-indigo-600",
bg_indigo_700: "bg-indigo-700",
bg_indigo_800: "bg-indigo-800",
bg_indigo_900: "bg-indigo-900",
bg_inherit: "bg-inherit",
bg_left: "bg-left",
bg_left_bottom: "bg-left-bottom",
bg_left_top: "bg-left-top",
bg_lime_100: "bg-lime-100",
bg_lime_200: "bg-lime-200",
bg_lime_300: "bg-lime-300",
bg_lime_400: "bg-lime-400",
bg_lime_50: "bg-lime-50",
bg_lime_500: "bg-lime-500",
bg_lime_600: "bg-lime-600",
bg_lime_700: "bg-lime-700",
bg_lime_800: "bg-lime-800",
bg_lime_900: "bg-lime-900",
bg_local: "bg-local",
bg_neutral_100: "bg-neutral-100",
bg_neutral_200: "bg-neutral-200",
bg_neutral_300: "bg-neutral-300",
bg_neutral_400: "bg-neutral-400",
bg_neutral_50: "bg-neutral-50",
bg_neutral_500: "bg-neutral-500",
bg_neutral_600: "bg-neutral-600",
bg_neutral_700: "bg-neutral-700",
bg_neutral_800: "bg-neutral-800",
bg_neutral_900: "bg-neutral-900",
bg_no_repeat: "bg-no-repeat",
bg_none: "bg-none",
bg_opacity_0: "bg-opacity-0",
bg_opacity_10: "bg-opacity-10",
bg_opacity_100: "bg-opacity-100",
bg_opacity_20: "bg-opacity-20",
bg_opacity_25: "bg-opacity-25",
bg_opacity_30: "bg-opacity-30",
bg_opacity_40: "bg-opacity-40",
bg_opacity_5: "bg-opacity-5",
bg_opacity_50: "bg-opacity-50",
bg_opacity_60: "bg-opacity-60",
bg_opacity_70: "bg-opacity-70",
bg_opacity_75: "bg-opacity-75",
bg_opacity_80: "bg-opacity-80",
bg_opacity_90: "bg-opacity-90",
bg_opacity_95: "bg-opacity-95",
bg_orange_100: "bg-orange-100",
bg_orange_200: "bg-orange-200",
bg_orange_300: "bg-orange-300",
bg_orange_400: "bg-orange-400",
bg_orange_50: "bg-orange-50",
bg_orange_500: "bg-orange-500",
bg_orange_600: "bg-orange-600",
bg_orange_700: "bg-orange-700",
bg_orange_800: "bg-orange-800",
bg_orange_900: "bg-orange-900",
bg_origin_border: "bg-origin-border",
bg_origin_content: "bg-origin-content",
bg_origin_padding: "bg-origin-padding",
bg_pink_100: "bg-pink-100",
bg_pink_200: "bg-pink-200",
bg_pink_300: "bg-pink-300",
bg_pink_400: "bg-pink-400",
bg_pink_50: "bg-pink-50",
bg_pink_500: "bg-pink-500",
bg_pink_600: "bg-pink-600",
bg_pink_700: "bg-pink-700",
bg_pink_800: "bg-pink-800",
bg_pink_900: "bg-pink-900",
bg_purple_100: "bg-purple-100",
bg_purple_200: "bg-purple-200",
bg_purple_300: "bg-purple-300",
bg_purple_400: "bg-purple-400",
bg_purple_50: "bg-purple-50",
bg_purple_500: "bg-purple-500",
bg_purple_600: "bg-purple-600",
bg_purple_700: "bg-purple-700",
bg_purple_800: "bg-purple-800",
bg_purple_900: "bg-purple-900",
bg_red_100: "bg-red-100",
bg_red_200: "bg-red-200",
bg_red_300: "bg-red-300",
bg_red_400: "bg-red-400",
bg_red_50: "bg-red-50",
bg_red_500: "bg-red-500",
bg_red_600: "bg-red-600",
bg_red_700: "bg-red-700",
bg_red_800: "bg-red-800",
bg_red_900: "bg-red-900",
bg_repeat: "bg-repeat",
bg_repeat_round: "bg-repeat-round",
bg_repeat_space: "bg-repeat-space",
bg_repeat_x: "bg-repeat-x",
bg_repeat_y: "bg-repeat-y",
bg_right: "bg-right",
bg_right_bottom: "bg-right-bottom",
bg_right_top: "bg-right-top",
bg_rose_100: "bg-rose-100",
bg_rose_200: "bg-rose-200",
bg_rose_300: "bg-rose-300",
bg_rose_400: "bg-rose-400",
bg_rose_50: "bg-rose-50",
bg_rose_500: "bg-rose-500",
bg_rose_600: "bg-rose-600",
bg_rose_700: "bg-rose-700",
bg_rose_800: "bg-rose-800",
bg_rose_900: "bg-rose-900",
bg_scroll: "bg-scroll",
bg_sky_100: "bg-sky-100",
bg_sky_200: "bg-sky-200",
bg_sky_300: "bg-sky-300",
bg_sky_400: "bg-sky-400",
bg_sky_50: "bg-sky-50",
bg_sky_500: "bg-sky-500",
bg_sky_600: "bg-sky-600",
bg_sky_700: "bg-sky-700",
bg_sky_800: "bg-sky-800",
bg_sky_900: "bg-sky-900",
bg_slate_100: "bg-slate-100",
bg_slate_200: "bg-slate-200",
bg_slate_300: "bg-slate-300",
bg_slate_400: "bg-slate-400",
bg_slate_50: "bg-slate-50",
bg_slate_500: "bg-slate-500",
bg_slate_600: "bg-slate-600",
bg_slate_700: "bg-slate-700",
bg_slate_800: "bg-slate-800",
bg_slate_900: "bg-slate-900",
bg_stone_100: "bg-stone-100",
bg_stone_200: "bg-stone-200",
bg_stone_300: "bg-stone-300",
bg_stone_400: "bg-stone-400",
bg_stone_50: "bg-stone-50",
bg_stone_500: "bg-stone-500",
bg_stone_600: "bg-stone-600",
bg_stone_700: "bg-stone-700",
bg_stone_800: "bg-stone-800",
bg_stone_900: "bg-stone-900",
bg_teal_100: "bg-teal-100",
bg_teal_200: "bg-teal-200",
bg_teal_300: "bg-teal-300",
bg_teal_400: "bg-teal-400",
bg_teal_50: "bg-teal-50",
bg_teal_500: "bg-teal-500",
bg_teal_600: "bg-teal-600",
bg_teal_700: "bg-teal-700",
bg_teal_800: "bg-teal-800",
bg_teal_900: "bg-teal-900",
bg_top: "bg-top",
bg_transparent: "bg-transparent",
bg_violet_100: "bg-violet-100",
bg_violet_200: "bg-violet-200",
bg_violet_300: "bg-violet-300",
bg_violet_400: "bg-violet-400",
bg_violet_50: "bg-violet-50",
bg_violet_500: "bg-violet-500",
bg_violet_600: "bg-violet-600",
bg_violet_700: "bg-violet-700",
bg_violet_800: "bg-violet-800",
bg_violet_900: "bg-violet-900",
bg_white: "bg-white",
bg_yellow_100: "bg-yellow-100",
bg_yellow_200: "bg-yellow-200",
bg_yellow_300: "bg-yellow-300",
bg_yellow_400: "bg-yellow-400",
bg_yellow_50: "bg-yellow-50",
bg_yellow_500: "bg-yellow-500",
bg_yellow_600: "bg-yellow-600",
bg_yellow_700: "bg-yellow-700",
bg_yellow_800: "bg-yellow-800",
bg_yellow_900: "bg-yellow-900",
bg_zinc_100: "bg-zinc-100",
bg_zinc_200: "bg-zinc-200",
bg_zinc_300: "bg-zinc-300",
bg_zinc_400: "bg-zinc-400",
bg_zinc_50: "bg-zinc-50",
bg_zinc_500: "bg-zinc-500",
bg_zinc_600: "bg-zinc-600",
bg_zinc_700: "bg-zinc-700",
bg_zinc_800: "bg-zinc-800",
bg_zinc_900: "bg-zinc-900",
from_amber_100: "from-amber-100",
from_amber_200: "from-amber-200",
from_amber_300: "from-amber-300",
from_amber_400: "from-amber-400",
from_amber_50: "from-amber-50",
from_amber_500: "from-amber-500",
from_amber_600: "from-amber-600",
from_amber_700: "from-amber-700",
from_amber_800: "from-amber-800",
from_amber_900: "from-amber-900",
from_black: "from-black",
from_blue_100: "from-blue-100",
from_blue_200: "from-blue-200",
from_blue_300: "from-blue-300",
from_blue_400: "from-blue-400",
from_blue_50: "from-blue-50",
from_blue_500: "from-blue-500",
from_blue_600: "from-blue-600",
from_blue_700: "from-blue-700",
from_blue_800: "from-blue-800",
from_blue_900: "from-blue-900",
from_current: "from-current",
from_cyan_100: "from-cyan-100",
from_cyan_200: "from-cyan-200",
from_cyan_300: "from-cyan-300",
from_cyan_400: "from-cyan-400",
from_cyan_50: "from-cyan-50",
from_cyan_500: "from-cyan-500",
from_cyan_600: "from-cyan-600",
from_cyan_700: "from-cyan-700",
from_cyan_800: "from-cyan-800",
from_cyan_900: "from-cyan-900",
from_emerald_100: "from-emerald-100",
from_emerald_200: "from-emerald-200",
from_emerald_300: "from-emerald-300",
from_emerald_400: "from-emerald-400",
from_emerald_50: "from-emerald-50",
from_emerald_500: "from-emerald-500",
from_emerald_600: "from-emerald-600",
from_emerald_700: "from-emerald-700",
from_emerald_800: "from-emerald-800",
from_emerald_900: "from-emerald-900",
from_fuchsia_100: "from-fuchsia-100",
from_fuchsia_200: "from-fuchsia-200",
from_fuchsia_300: "from-fuchsia-300",
from_fuchsia_400: "from-fuchsia-400",
from_fuchsia_50: "from-fuchsia-50",
from_fuchsia_500: "from-fuchsia-500",
from_fuchsia_600: "from-fuchsia-600",
from_fuchsia_700: "from-fuchsia-700",
from_fuchsia_800: "from-fuchsia-800",
from_fuchsia_900: "from-fuchsia-900",
from_gray_100: "from-gray-100",
from_gray_200: "from-gray-200",
from_gray_300: "from-gray-300",
from_gray_400: "from-gray-400",
from_gray_50: "from-gray-50",
from_gray_500: "from-gray-500",
from_gray_600: "from-gray-600",
from_gray_700: "from-gray-700",
from_gray_800: "from-gray-800",
from_gray_900: "from-gray-900",
from_green_100: "from-green-100",
from_green_200: "from-green-200",
from_green_300: "from-green-300",
from_green_400: "from-green-400",
from_green_50: "from-green-50",
from_green_500: "from-green-500",
from_green_600: "from-green-600",
from_green_700: "from-green-700",
from_green_800: "from-green-800",
from_green_900: "from-green-900",
from_indigo_100: "from-indigo-100",
from_indigo_200: "from-indigo-200",
from_indigo_300: "from-indigo-300",
from_indigo_400: "from-indigo-400",
from_indigo_50: "from-indigo-50",
from_indigo_500: "from-indigo-500",
from_indigo_600: "from-indigo-600",
from_indigo_700: "from-indigo-700",
from_indigo_800: "from-indigo-800",
from_indigo_900: "from-indigo-900",
from_inherit: "from-inherit",
from_lime_100: "from-lime-100",
from_lime_200: "from-lime-200",
from_lime_300: "from-lime-300",
from_lime_400: "from-lime-400",
from_lime_50: "from-lime-50",
from_lime_500: "from-lime-500",
from_lime_600: "from-lime-600",
from_lime_700: "from-lime-700",
from_lime_800: "from-lime-800",
from_lime_900: "from-lime-900",
from_neutral_100: "from-neutral-100",
from_neutral_200: "from-neutral-200",
from_neutral_300: "from-neutral-300",
from_neutral_400: "from-neutral-400",
from_neutral_50: "from-neutral-50",
from_neutral_500: "from-neutral-500",
from_neutral_600: "from-neutral-600",
from_neutral_700: "from-neutral-700",
from_neutral_800: "from-neutral-800",
from_neutral_900: "from-neutral-900",
from_orange_100: "from-orange-100",
from_orange_200: "from-orange-200",
from_orange_300: "from-orange-300",
from_orange_400: "from-orange-400",
from_orange_50: "from-orange-50",
from_orange_500: "from-orange-500",
from_orange_600: "from-orange-600",
from_orange_700: "from-orange-700",
from_orange_800: "from-orange-800",
from_orange_900: "from-orange-900",
from_pink_100: "from-pink-100",
from_pink_200: "from-pink-200",
from_pink_300: "from-pink-300",
from_pink_400: "from-pink-400",
from_pink_50: "from-pink-50",
from_pink_500: "from-pink-500",
from_pink_600: "from-pink-600",
from_pink_700: "from-pink-700",
from_pink_800: "from-pink-800",
from_pink_900: "from-pink-900",
from_purple_100: "from-purple-100",
from_purple_200: "from-purple-200",
from_purple_300: "from-purple-300",
from_purple_400: "from-purple-400",
from_purple_50: "from-purple-50",
from_purple_500: "from-purple-500",
from_purple_600: "from-purple-600",
from_purple_700: "from-purple-700",
from_purple_800: "from-purple-800",
from_purple_900: "from-purple-900",
from_red_100: "from-red-100",
from_red_200: "from-red-200",
from_red_300: "from-red-300",
from_red_400: "from-red-400",
from_red_50: "from-red-50",
from_red_500: "from-red-500",
from_red_600: "from-red-600",
from_red_700: "from-red-700",
from_red_800: "from-red-800",
from_red_900: "from-red-900",
from_rose_100: "from-rose-100",
from_rose_200: "from-rose-200",
from_rose_300: "from-rose-300",
from_rose_400: "from-rose-400",
from_rose_50: "from-rose-50",
from_rose_500: "from-rose-500",
from_rose_600: "from-rose-600",
from_rose_700: "from-rose-700",
from_rose_800: "from-rose-800",
from_rose_900: "from-rose-900",
from_sky_100: "from-sky-100",
from_sky_200: "from-sky-200",
from_sky_300: "from-sky-300",
from_sky_400: "from-sky-400",
from_sky_50: "from-sky-50",
from_sky_500: "from-sky-500",
from_sky_600: "from-sky-600",
from_sky_700: "from-sky-700",
from_sky_800: "from-sky-800",
from_sky_900: "from-sky-900",
from_slate_100: "from-slate-100",
from_slate_200: "from-slate-200",
from_slate_300: "from-slate-300",
from_slate_400: "from-slate-400",
from_slate_50: "from-slate-50",
from_slate_500: "from-slate-500",
from_slate_600: "from-slate-600",
from_slate_700: "from-slate-700",
from_slate_800: "from-slate-800",
from_slate_900: "from-slate-900",
from_stone_100: "from-stone-100",
from_stone_200: "from-stone-200",
from_stone_300: "from-stone-300",
from_stone_400: "from-stone-400",
from_stone_50: "from-stone-50",
from_stone_500: "from-stone-500",
from_stone_600: "from-stone-600",
from_stone_700: "from-stone-700",
from_stone_800: "from-stone-800",
from_stone_900: "from-stone-900",
from_teal_100: "from-teal-100",
from_teal_200: "from-teal-200",
from_teal_300: "from-teal-300",
from_teal_400: "from-teal-400",
from_teal_50: "from-teal-50",
from_teal_500: "from-teal-500",
from_teal_600: "from-teal-600",
from_teal_700: "from-teal-700",
from_teal_800: "from-teal-800",
from_teal_900: "from-teal-900",
from_transparent: "from-transparent",
from_violet_100: "from-violet-100",
from_violet_200: "from-violet-200",
from_violet_300: "from-violet-300",
from_violet_400: "from-violet-400",
from_violet_50: "from-violet-50",
from_violet_500: "from-violet-500",
from_violet_600: "from-violet-600",
from_violet_700: "from-violet-700",
from_violet_800: "from-violet-800",
from_violet_900: "from-violet-900",
from_white: "from-white",
from_yellow_100: "from-yellow-100",
from_yellow_200: "from-yellow-200",
from_yellow_300: "from-yellow-300",
from_yellow_400: "from-yellow-400",
from_yellow_50: "from-yellow-50",
from_yellow_500: "from-yellow-500",
from_yellow_600: "from-yellow-600",
from_yellow_700: "from-yellow-700",
from_yellow_800: "from-yellow-800",
from_yellow_900: "from-yellow-900",
from_zinc_100: "from-zinc-100",
from_zinc_200: "from-zinc-200",
from_zinc_300: "from-zinc-300",
from_zinc_400: "from-zinc-400",
from_zinc_50: "from-zinc-50",
from_zinc_500: "from-zinc-500",
from_zinc_600: "from-zinc-600",
from_zinc_700: "from-zinc-700",
from_zinc_800: "from-zinc-800",
from_zinc_900: "from-zinc-900",
to_amber_100: "to-amber-100",
to_amber_200: "to-amber-200",
to_amber_300: "to-amber-300",
to_amber_400: "to-amber-400",
to_amber_50: "to-amber-50",
to_amber_500: "to-amber-500",
to_amber_600: "to-amber-600",
to_amber_700: "to-amber-700",
to_amber_800: "to-amber-800",
to_amber_900: "to-amber-900",
to_black: "to-black",
to_blue_100: "to-blue-100",
to_blue_200: "to-blue-200",
to_blue_300: "to-blue-300",
to_blue_400: "to-blue-400",
to_blue_50: "to-blue-50",
to_blue_500: "to-blue-500",
to_blue_600: "to-blue-600",
to_blue_700: "to-blue-700",
to_blue_800: "to-blue-800",
to_blue_900: "to-blue-900",
to_current: "to-current",
to_cyan_100: "to-cyan-100",
to_cyan_200: "to-cyan-200",
to_cyan_300: "to-cyan-300",
to_cyan_400: "to-cyan-400",
to_cyan_50: "to-cyan-50",
to_cyan_500: "to-cyan-500",
to_cyan_600: "to-cyan-600",
to_cyan_700: "to-cyan-700",
to_cyan_800: "to-cyan-800",
to_cyan_900: "to-cyan-900",
to_emerald_100: "to-emerald-100",
to_emerald_200: "to-emerald-200",
to_emerald_300: "to-emerald-300",
to_emerald_400: "to-emerald-400",
to_emerald_50: "to-emerald-50",
to_emerald_500: "to-emerald-500",
to_emerald_600: "to-emerald-600",
to_emerald_700: "to-emerald-700",
to_emerald_800: "to-emerald-800",
to_emerald_900: "to-emerald-900",
to_fuchsia_100: "to-fuchsia-100",
to_fuchsia_200: "to-fuchsia-200",
to_fuchsia_300: "to-fuchsia-300",
to_fuchsia_400: "to-fuchsia-400",
to_fuchsia_50: "to-fuchsia-50",
to_fuchsia_500: "to-fuchsia-500",
to_fuchsia_600: "to-fuchsia-600",
to_fuchsia_700: "to-fuchsia-700",
to_fuchsia_800: "to-fuchsia-800",
to_fuchsia_900: "to-fuchsia-900",
to_gray_100: "to-gray-100",
to_gray_200: "to-gray-200",
to_gray_300: "to-gray-300",
to_gray_400: "to-gray-400",
to_gray_50: "to-gray-50",
to_gray_500: "to-gray-500",
to_gray_600: "to-gray-600",
to_gray_700: "to-gray-700",
to_gray_800: "to-gray-800",
to_gray_900: "to-gray-900",
to_green_100: "to-green-100",
to_green_200: "to-green-200",
to_green_300: "to-green-300",
to_green_400: "to-green-400",
to_green_50: "to-green-50",
to_green_500: "to-green-500",
to_green_600: "to-green-600",
to_green_700: "to-green-700",
to_green_800: "to-green-800",
to_green_900: "to-green-900",
to_indigo_100: "to-indigo-100",
to_indigo_200: "to-indigo-200",
to_indigo_300: "to-indigo-300",
to_indigo_400: "to-indigo-400",
to_indigo_50: "to-indigo-50",
to_indigo_500: "to-indigo-500",
to_indigo_600: "to-indigo-600",
to_indigo_700: "to-indigo-700",
to_indigo_800: "to-indigo-800",
to_indigo_900: "to-indigo-900",
to_inherit: "to-inherit",
to_lime_100: "to-lime-100",
to_lime_200: "to-lime-200",
to_lime_300: "to-lime-300",
to_lime_400: "to-lime-400",
to_lime_50: "to-lime-50",
to_lime_500: "to-lime-500",
to_lime_600: "to-lime-600",
to_lime_700: "to-lime-700",
to_lime_800: "to-lime-800",
to_lime_900: "to-lime-900",
to_neutral_100: "to-neutral-100",
to_neutral_200: "to-neutral-200",
to_neutral_300: "to-neutral-300",
to_neutral_400: "to-neutral-400",
to_neutral_50: "to-neutral-50",
to_neutral_500: "to-neutral-500",
to_neutral_600: "to-neutral-600",
to_neutral_700: "to-neutral-700",
to_neutral_800: "to-neutral-800",
to_neutral_900: "to-neutral-900",
to_orange_100: "to-orange-100",
to_orange_200: "to-orange-200",
to_orange_300: "to-orange-300",
to_orange_400: "to-orange-400",
to_orange_50: "to-orange-50",
to_orange_500: "to-orange-500",
to_orange_600: "to-orange-600",
to_orange_700: "to-orange-700",
to_orange_800: "to-orange-800",
to_orange_900: "to-orange-900",
to_pink_100: "to-pink-100",
to_pink_200: "to-pink-200",
to_pink_300: "to-pink-300",
to_pink_400: "to-pink-400",
to_pink_50: "to-pink-50",
to_pink_500: "to-pink-500",
to_pink_600: "to-pink-600",
to_pink_700: "to-pink-700",
to_pink_800: "to-pink-800",
to_pink_900: "to-pink-900",
to_purple_100: "to-purple-100",
to_purple_200: "to-purple-200",
to_purple_300: "to-purple-300",
to_purple_400: "to-purple-400",
to_purple_50: "to-purple-50",
to_purple_500: "to-purple-500",
to_purple_600: "to-purple-600",
to_purple_700: "to-purple-700",
to_purple_800: "to-purple-800",
to_purple_900: "to-purple-900",
to_red_100: "to-red-100",
to_red_200: "to-red-200",
to_red_300: "to-red-300",
to_red_400: "to-red-400",
to_red_50: "to-red-50",
to_red_500: "to-red-500",
to_red_600: "to-red-600",
to_red_700: "to-red-700",
to_red_800: "to-red-800",
to_red_900: "to-red-900",
to_rose_100: "to-rose-100",
to_rose_200: "to-rose-200",
to_rose_300: "to-rose-300",
to_rose_400: "to-rose-400",
to_rose_50: "to-rose-50",
to_rose_500: "to-rose-500",
to_rose_600: "to-rose-600",
to_rose_700: "to-rose-700",
to_rose_800: "to-rose-800",
to_rose_900: "to-rose-900",
to_sky_100: "to-sky-100",
to_sky_200: "to-sky-200",
to_sky_300: "to-sky-300",
to_sky_400: "to-sky-400",
to_sky_50: "to-sky-50",
to_sky_500: "to-sky-500",
to_sky_600: "to-sky-600",
to_sky_700: "to-sky-700",
to_sky_800: "to-sky-800",
to_sky_900: "to-sky-900",
to_slate_100: "to-slate-100",
to_slate_200: "to-slate-200",
to_slate_300: "to-slate-300",
to_slate_400: "to-slate-400",
to_slate_50: "to-slate-50",
to_slate_500: "to-slate-500",
to_slate_600: "to-slate-600",
to_slate_700: "to-slate-700",
to_slate_800: "to-slate-800",
to_slate_900: "to-slate-900",
to_stone_100: "to-stone-100",
to_stone_200: "to-stone-200",
to_stone_300: "to-stone-300",
to_stone_400: "to-stone-400",
to_stone_50: "to-stone-50",
to_stone_500: "to-stone-500",
to_stone_600: "to-stone-600",
to_stone_700: "to-stone-700",
to_stone_800: "to-stone-800",
to_stone_900: "to-stone-900",
to_teal_100: "to-teal-100",
to_teal_200: "to-teal-200",
to_teal_300: "to-teal-300",
to_teal_400: "to-teal-400",
to_teal_50: "to-teal-50",
to_teal_500: "to-teal-500",
to_teal_600: "to-teal-600",
to_teal_700: "to-teal-700",
to_teal_800: "to-teal-800",
to_teal_900: "to-teal-900",
to_transparent: "to-transparent",
to_violet_100: "to-violet-100",
to_violet_200: "to-violet-200",
to_violet_300: "to-violet-300",
to_violet_400: "to-violet-400",
to_violet_50: "to-violet-50",
to_violet_500: "to-violet-500",
to_violet_600: "to-violet-600",
to_violet_700: "to-violet-700",
to_violet_800: "to-violet-800",
to_violet_900: "to-violet-900",
to_white: "to-white",
to_yellow_100: "to-yellow-100",
to_yellow_200: "to-yellow-200",
to_yellow_300: "to-yellow-300",
to_yellow_400: "to-yellow-400",
to_yellow_50: "to-yellow-50",
to_yellow_500: "to-yellow-500",
to_yellow_600: "to-yellow-600",
to_yellow_700: "to-yellow-700",
to_yellow_800: "to-yellow-800",
to_yellow_900: "to-yellow-900",
to_zinc_100: "to-zinc-100",
to_zinc_200: "to-zinc-200",
to_zinc_300: "to-zinc-300",
to_zinc_400: "to-zinc-400",
to_zinc_50: "to-zinc-50",
to_zinc_500: "to-zinc-500",
to_zinc_600: "to-zinc-600",
to_zinc_700: "to-zinc-700",
to_zinc_800: "to-zinc-800",
to_zinc_900: "to-zinc-900",
via_amber_100: "via-amber-100",
via_amber_200: "via-amber-200",
via_amber_300: "via-amber-300",
via_amber_400: "via-amber-400",
via_amber_50: "via-amber-50",
via_amber_500: "via-amber-500",
via_amber_600: "via-amber-600",
via_amber_700: "via-amber-700",
via_amber_800: "via-amber-800",
via_amber_900: "via-amber-900",
via_black: "via-black",
via_blue_100: "via-blue-100",
via_blue_200: "via-blue-200",
via_blue_300: "via-blue-300",
via_blue_400: "via-blue-400",
via_blue_50: "via-blue-50",
via_blue_500: "via-blue-500",
via_blue_600: "via-blue-600",
via_blue_700: "via-blue-700",
via_blue_800: "via-blue-800",
via_blue_900: "via-blue-900",
via_current: "via-current",
via_cyan_100: "via-cyan-100",
via_cyan_200: "via-cyan-200",
via_cyan_300: "via-cyan-300",
via_cyan_400: "via-cyan-400",
via_cyan_50: "via-cyan-50",
via_cyan_500: "via-cyan-500",
via_cyan_600: "via-cyan-600",
via_cyan_700: "via-cyan-700",
via_cyan_800: "via-cyan-800",
via_cyan_900: "via-cyan-900",
via_emerald_100: "via-emerald-100",
via_emerald_200: "via-emerald-200",
via_emerald_300: "via-emerald-300",
via_emerald_400: "via-emerald-400",
via_emerald_50: "via-emerald-50",
via_emerald_500: "via-emerald-500",
via_emerald_600: "via-emerald-600",
via_emerald_700: "via-emerald-700",
via_emerald_800: "via-emerald-800",
via_emerald_900: "via-emerald-900",
via_fuchsia_100: "via-fuchsia-100",
via_fuchsia_200: "via-fuchsia-200",
via_fuchsia_300: "via-fuchsia-300",
via_fuchsia_400: "via-fuchsia-400",
via_fuchsia_50: "via-fuchsia-50",
via_fuchsia_500: "via-fuchsia-500",
via_fuchsia_600: "via-fuchsia-600",
via_fuchsia_700: "via-fuchsia-700",
via_fuchsia_800: "via-fuchsia-800",
via_fuchsia_900: "via-fuchsia-900",
via_gray_100: "via-gray-100",
via_gray_200: "via-gray-200",
via_gray_300: "via-gray-300",
via_gray_400: "via-gray-400",
via_gray_50: "via-gray-50",
via_gray_500: "via-gray-500",
via_gray_600: "via-gray-600",
via_gray_700: "via-gray-700",
via_gray_800: "via-gray-800",
via_gray_900: "via-gray-900",
via_green_100: "via-green-100",
via_green_200: "via-green-200",
via_green_300: "via-green-300",
via_green_400: "via-green-400",
via_green_50: "via-green-50",
via_green_500: "via-green-500",
via_green_600: "via-green-600",
via_green_700: "via-green-700",
via_green_800: "via-green-800",
via_green_900: "via-green-900",
via_indigo_100: "via-indigo-100",
via_indigo_200: "via-indigo-200",
via_indigo_300: "via-indigo-300",
via_indigo_400: "via-indigo-400",
via_indigo_50: "via-indigo-50",
via_indigo_500: "via-indigo-500",
via_indigo_600: "via-indigo-600",
via_indigo_700: "via-indigo-700",
via_indigo_800: "via-indigo-800",
via_indigo_900: "via-indigo-900",
via_inherit: "via-inherit",
via_lime_100: "via-lime-100",
via_lime_200: "via-lime-200",
via_lime_300: "via-lime-300",
via_lime_400: "via-lime-400",
via_lime_50: "via-lime-50",
via_lime_500: "via-lime-500",
via_lime_600: "via-lime-600",
via_lime_700: "via-lime-700",
via_lime_800: "via-lime-800",
via_lime_900: "via-lime-900",
via_neutral_100: "via-neutral-100",
via_neutral_200: "via-neutral-200",
via_neutral_300: "via-neutral-300",
via_neutral_400: "via-neutral-400",
via_neutral_50: "via-neutral-50",
via_neutral_500: "via-neutral-500",
via_neutral_600: "via-neutral-600",
via_neutral_700: "via-neutral-700",
via_neutral_800: "via-neutral-800",
via_neutral_900: "via-neutral-900",
via_orange_100: "via-orange-100",
via_orange_200: "via-orange-200",
via_orange_300: "via-orange-300",
via_orange_400: "via-orange-400",
via_orange_50: "via-orange-50",
via_orange_500: "via-orange-500",
via_orange_600: "via-orange-600",
via_orange_700: "via-orange-700",
via_orange_800: "via-orange-800",
via_orange_900: "via-orange-900",
via_pink_100: "via-pink-100",
via_pink_200: "via-pink-200",
via_pink_300: "via-pink-300",
via_pink_400: "via-pink-400",
via_pink_50: "via-pink-50",
via_pink_500: "via-pink-500",
via_pink_600: "via-pink-600",
via_pink_700: "via-pink-700",
via_pink_800: "via-pink-800",
via_pink_900: "via-pink-900",
via_purple_100: "via-purple-100",
via_purple_200: "via-purple-200",
via_purple_300: "via-purple-300",
via_purple_400: "via-purple-400",
via_purple_50: "via-purple-50",
via_purple_500: "via-purple-500",
via_purple_600: "via-purple-600",
via_purple_700: "via-purple-700",
via_purple_800: "via-purple-800",
via_purple_900: "via-purple-900",
via_red_100: "via-red-100",
via_red_200: "via-red-200",
via_red_300: "via-red-300",
via_red_400: "via-red-400",
via_red_50: "via-red-50",
via_red_500: "via-red-500",
via_red_600: "via-red-600",
via_red_700: "via-red-700",
via_red_800: "via-red-800",
via_red_900: "via-red-900",
via_rose_100: "via-rose-100",
via_rose_200: "via-rose-200",
via_rose_300: "via-rose-300",
via_rose_400: "via-rose-400",
via_rose_50: "via-rose-50",
via_rose_500: "via-rose-500",
via_rose_600: "via-rose-600",
via_rose_700: "via-rose-700",
via_rose_800: "via-rose-800",
via_rose_900: "via-rose-900",
via_sky_100: "via-sky-100",
via_sky_200: "via-sky-200",
via_sky_300: "via-sky-300",
via_sky_400: "via-sky-400",
via_sky_50: "via-sky-50",
via_sky_500: "via-sky-500",
via_sky_600: "via-sky-600",
via_sky_700: "via-sky-700",
via_sky_800: "via-sky-800",
via_sky_900: "via-sky-900",
via_slate_100: "via-slate-100",
via_slate_200: "via-slate-200",
via_slate_300: "via-slate-300",
via_slate_400: "via-slate-400",
via_slate_50: "via-slate-50",
via_slate_500: "via-slate-500",
via_slate_600: "via-slate-600",
via_slate_700: "via-slate-700",
via_slate_800: "via-slate-800",
via_slate_900: "via-slate-900",
via_stone_100: "via-stone-100",
via_stone_200: "via-stone-200",
via_stone_300: "via-stone-300",
via_stone_400: "via-stone-400",
via_stone_50: "via-stone-50",
via_stone_500: "via-stone-500",
via_stone_600: "via-stone-600",
via_stone_700: "via-stone-700",
via_stone_800: "via-stone-800",
via_stone_900: "via-stone-900",
via_teal_100: "via-teal-100",
via_teal_200: "via-teal-200",
via_teal_300: "via-teal-300",
via_teal_400: "via-teal-400",
via_teal_50: "via-teal-50",
via_teal_500: "via-teal-500",
via_teal_600: "via-teal-600",
via_teal_700: "via-teal-700",
via_teal_800: "via-teal-800",
via_teal_900: "via-teal-900",
via_transparent: "via-transparent",
via_violet_100: "via-violet-100",
via_violet_200: "via-violet-200",
via_violet_300: "via-violet-300",
via_violet_400: "via-violet-400",
via_violet_50: "via-violet-50",
via_violet_500: "via-violet-500",
via_violet_600: "via-violet-600",
via_violet_700: "via-violet-700",
via_violet_800: "via-violet-800",
via_violet_900: "via-violet-900",
via_white: "via-white",
via_yellow_100: "via-yellow-100",
via_yellow_200: "via-yellow-200",
via_yellow_300: "via-yellow-300",
via_yellow_400: "via-yellow-400",
via_yellow_50: "via-yellow-50",
via_yellow_500: "via-yellow-500",
via_yellow_600: "via-yellow-600",
via_yellow_700: "via-yellow-700",
via_yellow_800: "via-yellow-800",
via_yellow_900: "via-yellow-900",
via_zinc_100: "via-zinc-100",
via_zinc_200: "via-zinc-200",
via_zinc_300: "via-zinc-300",
via_zinc_400: "via-zinc-400",
via_zinc_50: "via-zinc-50",
via_zinc_500: "via-zinc-500",
via_zinc_600: "via-zinc-600",
via_zinc_700: "via-zinc-700",
via_zinc_800: "via-zinc-800",
via_zinc_900: "via-zinc-900",
};
pub static BORDERS: Borders = Borders {
border: "border",
border_0: "border-0",
border_2: "border-2",
border_4: "border-4",
border_8: "border-8",
border_amber_100: "border-amber-100",
border_amber_200: "border-amber-200",
border_amber_300: "border-amber-300",
border_amber_400: "border-amber-400",
border_amber_50: "border-amber-50",
border_amber_500: "border-amber-500",
border_amber_600: "border-amber-600",
border_amber_700: "border-amber-700",
border_amber_800: "border-amber-800",
border_amber_900: "border-amber-900",
border_b: "border-b",
border_b_0: "border-b-0",
border_b_2: "border-b-2",
border_b_4: "border-b-4",
border_b_8: "border-b-8",
border_b_amber_100: "border-b-amber-100",
border_b_amber_200: "border-b-amber-200",
border_b_amber_300: "border-b-amber-300",
border_b_amber_400: "border-b-amber-400",
border_b_amber_50: "border-b-amber-50",
border_b_amber_500: "border-b-amber-500",
border_b_amber_600: "border-b-amber-600",
border_b_amber_700: "border-b-amber-700",
border_b_amber_800: "border-b-amber-800",
border_b_amber_900: "border-b-amber-900",
border_b_black: "border-b-black",
border_b_blue_100: "border-b-blue-100",
border_b_blue_200: "border-b-blue-200",
border_b_blue_300: "border-b-blue-300",
border_b_blue_400: "border-b-blue-400",
border_b_blue_50: "border-b-blue-50",
border_b_blue_500: "border-b-blue-500",
border_b_blue_600: "border-b-blue-600",
border_b_blue_700: "border-b-blue-700",
border_b_blue_800: "border-b-blue-800",
border_b_blue_900: "border-b-blue-900",
border_b_current: "border-b-current",
border_b_cyan_100: "border-b-cyan-100",
border_b_cyan_200: "border-b-cyan-200",
border_b_cyan_300: "border-b-cyan-300",
border_b_cyan_400: "border-b-cyan-400",
border_b_cyan_50: "border-b-cyan-50",
border_b_cyan_500: "border-b-cyan-500",
border_b_cyan_600: "border-b-cyan-600",
border_b_cyan_700: "border-b-cyan-700",
border_b_cyan_800: "border-b-cyan-800",
border_b_cyan_900: "border-b-cyan-900",
border_b_emerald_100: "border-b-emerald-100",
border_b_emerald_200: "border-b-emerald-200",
border_b_emerald_300: "border-b-emerald-300",
border_b_emerald_400: "border-b-emerald-400",
border_b_emerald_50: "border-b-emerald-50",
border_b_emerald_500: "border-b-emerald-500",
border_b_emerald_600: "border-b-emerald-600",
border_b_emerald_700: "border-b-emerald-700",
border_b_emerald_800: "border-b-emerald-800",
border_b_emerald_900: "border-b-emerald-900",
border_b_fuchsia_100: "border-b-fuchsia-100",
border_b_fuchsia_200: "border-b-fuchsia-200",
border_b_fuchsia_300: "border-b-fuchsia-300",
border_b_fuchsia_400: "border-b-fuchsia-400",
border_b_fuchsia_50: "border-b-fuchsia-50",
border_b_fuchsia_500: "border-b-fuchsia-500",
border_b_fuchsia_600: "border-b-fuchsia-600",
border_b_fuchsia_700: "border-b-fuchsia-700",
border_b_fuchsia_800: "border-b-fuchsia-800",
border_b_fuchsia_900: "border-b-fuchsia-900",
border_b_gray_100: "border-b-gray-100",
border_b_gray_200: "border-b-gray-200",
border_b_gray_300: "border-b-gray-300",
border_b_gray_400: "border-b-gray-400",
border_b_gray_50: "border-b-gray-50",
border_b_gray_500: "border-b-gray-500",
border_b_gray_600: "border-b-gray-600",
border_b_gray_700: "border-b-gray-700",
border_b_gray_800: "border-b-gray-800",
border_b_gray_900: "border-b-gray-900",
border_b_green_100: "border-b-green-100",
border_b_green_200: "border-b-green-200",
border_b_green_300: "border-b-green-300",
border_b_green_400: "border-b-green-400",
border_b_green_50: "border-b-green-50",
border_b_green_500: "border-b-green-500",
border_b_green_600: "border-b-green-600",
border_b_green_700: "border-b-green-700",
border_b_green_800: "border-b-green-800",
border_b_green_900: "border-b-green-900",
border_b_indigo_100: "border-b-indigo-100",
border_b_indigo_200: "border-b-indigo-200",
border_b_indigo_300: "border-b-indigo-300",
border_b_indigo_400: "border-b-indigo-400",
border_b_indigo_50: "border-b-indigo-50",
border_b_indigo_500: "border-b-indigo-500",
border_b_indigo_600: "border-b-indigo-600",
border_b_indigo_700: "border-b-indigo-700",
border_b_indigo_800: "border-b-indigo-800",
border_b_indigo_900: "border-b-indigo-900",
border_b_inherit: "border-b-inherit",
border_b_lime_100: "border-b-lime-100",
border_b_lime_200: "border-b-lime-200",
border_b_lime_300: "border-b-lime-300",
border_b_lime_400: "border-b-lime-400",
border_b_lime_50: "border-b-lime-50",
border_b_lime_500: "border-b-lime-500",
border_b_lime_600: "border-b-lime-600",
border_b_lime_700: "border-b-lime-700",
border_b_lime_800: "border-b-lime-800",
border_b_lime_900: "border-b-lime-900",
border_b_neutral_100: "border-b-neutral-100",
border_b_neutral_200: "border-b-neutral-200",
border_b_neutral_300: "border-b-neutral-300",
border_b_neutral_400: "border-b-neutral-400",
border_b_neutral_50: "border-b-neutral-50",
border_b_neutral_500: "border-b-neutral-500",
border_b_neutral_600: "border-b-neutral-600",
border_b_neutral_700: "border-b-neutral-700",
border_b_neutral_800: "border-b-neutral-800",
border_b_neutral_900: "border-b-neutral-900",
border_b_orange_100: "border-b-orange-100",
border_b_orange_200: "border-b-orange-200",
border_b_orange_300: "border-b-orange-300",
border_b_orange_400: "border-b-orange-400",
border_b_orange_50: "border-b-orange-50",
border_b_orange_500: "border-b-orange-500",
border_b_orange_600: "border-b-orange-600",
border_b_orange_700: "border-b-orange-700",
border_b_orange_800: "border-b-orange-800",
border_b_orange_900: "border-b-orange-900",
border_b_pink_100: "border-b-pink-100",
border_b_pink_200: "border-b-pink-200",
border_b_pink_300: "border-b-pink-300",
border_b_pink_400: "border-b-pink-400",
border_b_pink_50: "border-b-pink-50",
border_b_pink_500: "border-b-pink-500",
border_b_pink_600: "border-b-pink-600",
border_b_pink_700: "border-b-pink-700",
border_b_pink_800: "border-b-pink-800",
border_b_pink_900: "border-b-pink-900",
border_b_purple_100: "border-b-purple-100",
border_b_purple_200: "border-b-purple-200",
border_b_purple_300: "border-b-purple-300",
border_b_purple_400: "border-b-purple-400",
border_b_purple_50: "border-b-purple-50",
border_b_purple_500: "border-b-purple-500",
border_b_purple_600: "border-b-purple-600",
border_b_purple_700: "border-b-purple-700",
border_b_purple_800: "border-b-purple-800",
border_b_purple_900: "border-b-purple-900",
border_b_red_100: "border-b-red-100",
border_b_red_200: "border-b-red-200",
border_b_red_300: "border-b-red-300",
border_b_red_400: "border-b-red-400",
border_b_red_50: "border-b-red-50",
border_b_red_500: "border-b-red-500",
border_b_red_600: "border-b-red-600",
border_b_red_700: "border-b-red-700",
border_b_red_800: "border-b-red-800",
border_b_red_900: "border-b-red-900",
border_b_rose_100: "border-b-rose-100",
border_b_rose_200: "border-b-rose-200",
border_b_rose_300: "border-b-rose-300",
border_b_rose_400: "border-b-rose-400",
border_b_rose_50: "border-b-rose-50",
border_b_rose_500: "border-b-rose-500",
border_b_rose_600: "border-b-rose-600",
border_b_rose_700: "border-b-rose-700",
border_b_rose_800: "border-b-rose-800",
border_b_rose_900: "border-b-rose-900",
border_b_sky_100: "border-b-sky-100",
border_b_sky_200: "border-b-sky-200",
border_b_sky_300: "border-b-sky-300",
border_b_sky_400: "border-b-sky-400",
border_b_sky_50: "border-b-sky-50",
border_b_sky_500: "border-b-sky-500",
border_b_sky_600: "border-b-sky-600",
border_b_sky_700: "border-b-sky-700",
border_b_sky_800: "border-b-sky-800",
border_b_sky_900: "border-b-sky-900",
border_b_slate_100: "border-b-slate-100",
border_b_slate_200: "border-b-slate-200",
border_b_slate_300: "border-b-slate-300",
border_b_slate_400: "border-b-slate-400",
border_b_slate_50: "border-b-slate-50",
border_b_slate_500: "border-b-slate-500",
border_b_slate_600: "border-b-slate-600",
border_b_slate_700: "border-b-slate-700",
border_b_slate_800: "border-b-slate-800",
border_b_slate_900: "border-b-slate-900",
border_b_stone_100: "border-b-stone-100",
border_b_stone_200: "border-b-stone-200",
border_b_stone_300: "border-b-stone-300",
border_b_stone_400: "border-b-stone-400",
border_b_stone_50: "border-b-stone-50",
border_b_stone_500: "border-b-stone-500",
border_b_stone_600: "border-b-stone-600",
border_b_stone_700: "border-b-stone-700",
border_b_stone_800: "border-b-stone-800",
border_b_stone_900: "border-b-stone-900",
border_b_teal_100: "border-b-teal-100",
border_b_teal_200: "border-b-teal-200",
border_b_teal_300: "border-b-teal-300",
border_b_teal_400: "border-b-teal-400",
border_b_teal_50: "border-b-teal-50",
border_b_teal_500: "border-b-teal-500",
border_b_teal_600: "border-b-teal-600",
border_b_teal_700: "border-b-teal-700",
border_b_teal_800: "border-b-teal-800",
border_b_teal_900: "border-b-teal-900",
border_b_transparent: "border-b-transparent",
border_b_violet_100: "border-b-violet-100",
border_b_violet_200: "border-b-violet-200",
border_b_violet_300: "border-b-violet-300",
border_b_violet_400: "border-b-violet-400",
border_b_violet_50: "border-b-violet-50",
border_b_violet_500: "border-b-violet-500",
border_b_violet_600: "border-b-violet-600",
border_b_violet_700: "border-b-violet-700",
border_b_violet_800: "border-b-violet-800",
border_b_violet_900: "border-b-violet-900",
border_b_white: "border-b-white",
border_b_yellow_100: "border-b-yellow-100",
border_b_yellow_200: "border-b-yellow-200",
border_b_yellow_300: "border-b-yellow-300",
border_b_yellow_400: "border-b-yellow-400",
border_b_yellow_50: "border-b-yellow-50",
border_b_yellow_500: "border-b-yellow-500",
border_b_yellow_600: "border-b-yellow-600",
border_b_yellow_700: "border-b-yellow-700",
border_b_yellow_800: "border-b-yellow-800",
border_b_yellow_900: "border-b-yellow-900",
border_b_zinc_100: "border-b-zinc-100",
border_b_zinc_200: "border-b-zinc-200",
border_b_zinc_300: "border-b-zinc-300",
border_b_zinc_400: "border-b-zinc-400",
border_b_zinc_50: "border-b-zinc-50",
border_b_zinc_500: "border-b-zinc-500",
border_b_zinc_600: "border-b-zinc-600",
border_b_zinc_700: "border-b-zinc-700",
border_b_zinc_800: "border-b-zinc-800",
border_b_zinc_900: "border-b-zinc-900",
border_black: "border-black",
border_blue_100: "border-blue-100",
border_blue_200: "border-blue-200",
border_blue_300: "border-blue-300",
border_blue_400: "border-blue-400",
border_blue_50: "border-blue-50",
border_blue_500: "border-blue-500",
border_blue_600: "border-blue-600",
border_blue_700: "border-blue-700",
border_blue_800: "border-blue-800",
border_blue_900: "border-blue-900",
border_current: "border-current",
border_cyan_100: "border-cyan-100",
border_cyan_200: "border-cyan-200",
border_cyan_300: "border-cyan-300",
border_cyan_400: "border-cyan-400",
border_cyan_50: "border-cyan-50",
border_cyan_500: "border-cyan-500",
border_cyan_600: "border-cyan-600",
border_cyan_700: "border-cyan-700",
border_cyan_800: "border-cyan-800",
border_cyan_900: "border-cyan-900",
border_dashed: "border-dashed",
border_dotted: "border-dotted",
border_double: "border-double",
border_emerald_100: "border-emerald-100",
border_emerald_200: "border-emerald-200",
border_emerald_300: "border-emerald-300",
border_emerald_400: "border-emerald-400",
border_emerald_50: "border-emerald-50",
border_emerald_500: "border-emerald-500",
border_emerald_600: "border-emerald-600",
border_emerald_700: "border-emerald-700",
border_emerald_800: "border-emerald-800",
border_emerald_900: "border-emerald-900",
border_fuchsia_100: "border-fuchsia-100",
border_fuchsia_200: "border-fuchsia-200",
border_fuchsia_300: "border-fuchsia-300",
border_fuchsia_400: "border-fuchsia-400",
border_fuchsia_50: "border-fuchsia-50",
border_fuchsia_500: "border-fuchsia-500",
border_fuchsia_600: "border-fuchsia-600",
border_fuchsia_700: "border-fuchsia-700",
border_fuchsia_800: "border-fuchsia-800",
border_fuchsia_900: "border-fuchsia-900",
border_gray_100: "border-gray-100",
border_gray_200: "border-gray-200",
border_gray_300: "border-gray-300",
border_gray_400: "border-gray-400",
border_gray_50: "border-gray-50",
border_gray_500: "border-gray-500",
border_gray_600: "border-gray-600",
border_gray_700: "border-gray-700",
border_gray_800: "border-gray-800",
border_gray_900: "border-gray-900",
border_green_100: "border-green-100",
border_green_200: "border-green-200",
border_green_300: "border-green-300",
border_green_400: "border-green-400",
border_green_50: "border-green-50",
border_green_500: "border-green-500",
border_green_600: "border-green-600",
border_green_700: "border-green-700",
border_green_800: "border-green-800",
border_green_900: "border-green-900",
border_hidden: "border-hidden",
border_indigo_100: "border-indigo-100",
border_indigo_200: "border-indigo-200",
border_indigo_300: "border-indigo-300",
border_indigo_400: "border-indigo-400",
border_indigo_50: "border-indigo-50",
border_indigo_500: "border-indigo-500",
border_indigo_600: "border-indigo-600",
border_indigo_700: "border-indigo-700",
border_indigo_800: "border-indigo-800",
border_indigo_900: "border-indigo-900",
border_inherit: "border-inherit",
border_l: "border-l",
border_l_0: "border-l-0",
border_l_2: "border-l-2",
border_l_4: "border-l-4",
border_l_8: "border-l-8",
border_l_amber_100: "border-l-amber-100",
border_l_amber_200: "border-l-amber-200",
border_l_amber_300: "border-l-amber-300",
border_l_amber_400: "border-l-amber-400",
border_l_amber_50: "border-l-amber-50",
border_l_amber_500: "border-l-amber-500",
border_l_amber_600: "border-l-amber-600",
border_l_amber_700: "border-l-amber-700",
border_l_amber_800: "border-l-amber-800",
border_l_amber_900: "border-l-amber-900",
border_l_black: "border-l-black",
border_l_blue_100: "border-l-blue-100",
border_l_blue_200: "border-l-blue-200",
border_l_blue_300: "border-l-blue-300",
border_l_blue_400: "border-l-blue-400",
border_l_blue_50: "border-l-blue-50",
border_l_blue_500: "border-l-blue-500",
border_l_blue_600: "border-l-blue-600",
border_l_blue_700: "border-l-blue-700",
border_l_blue_800: "border-l-blue-800",
border_l_blue_900: "border-l-blue-900",
border_l_current: "border-l-current",
border_l_cyan_100: "border-l-cyan-100",
border_l_cyan_200: "border-l-cyan-200",
border_l_cyan_300: "border-l-cyan-300",
border_l_cyan_400: "border-l-cyan-400",
border_l_cyan_50: "border-l-cyan-50",
border_l_cyan_500: "border-l-cyan-500",
border_l_cyan_600: "border-l-cyan-600",
border_l_cyan_700: "border-l-cyan-700",
border_l_cyan_800: "border-l-cyan-800",
border_l_cyan_900: "border-l-cyan-900",
border_l_emerald_100: "border-l-emerald-100",
border_l_emerald_200: "border-l-emerald-200",
border_l_emerald_300: "border-l-emerald-300",
border_l_emerald_400: "border-l-emerald-400",
border_l_emerald_50: "border-l-emerald-50",
border_l_emerald_500: "border-l-emerald-500",
border_l_emerald_600: "border-l-emerald-600",
border_l_emerald_700: "border-l-emerald-700",
border_l_emerald_800: "border-l-emerald-800",
border_l_emerald_900: "border-l-emerald-900",
border_l_fuchsia_100: "border-l-fuchsia-100",
border_l_fuchsia_200: "border-l-fuchsia-200",
border_l_fuchsia_300: "border-l-fuchsia-300",
border_l_fuchsia_400: "border-l-fuchsia-400",
border_l_fuchsia_50: "border-l-fuchsia-50",
border_l_fuchsia_500: "border-l-fuchsia-500",
border_l_fuchsia_600: "border-l-fuchsia-600",
border_l_fuchsia_700: "border-l-fuchsia-700",
border_l_fuchsia_800: "border-l-fuchsia-800",
border_l_fuchsia_900: "border-l-fuchsia-900",
border_l_gray_100: "border-l-gray-100",
border_l_gray_200: "border-l-gray-200",
border_l_gray_300: "border-l-gray-300",
border_l_gray_400: "border-l-gray-400",
border_l_gray_50: "border-l-gray-50",
border_l_gray_500: "border-l-gray-500",
border_l_gray_600: "border-l-gray-600",
border_l_gray_700: "border-l-gray-700",
border_l_gray_800: "border-l-gray-800",
border_l_gray_900: "border-l-gray-900",
border_l_green_100: "border-l-green-100",
border_l_green_200: "border-l-green-200",
border_l_green_300: "border-l-green-300",
border_l_green_400: "border-l-green-400",
border_l_green_50: "border-l-green-50",
border_l_green_500: "border-l-green-500",
border_l_green_600: "border-l-green-600",
border_l_green_700: "border-l-green-700",
border_l_green_800: "border-l-green-800",
border_l_green_900: "border-l-green-900",
border_l_indigo_100: "border-l-indigo-100",
border_l_indigo_200: "border-l-indigo-200",
border_l_indigo_300: "border-l-indigo-300",
border_l_indigo_400: "border-l-indigo-400",
border_l_indigo_50: "border-l-indigo-50",
border_l_indigo_500: "border-l-indigo-500",
border_l_indigo_600: "border-l-indigo-600",
border_l_indigo_700: "border-l-indigo-700",
border_l_indigo_800: "border-l-indigo-800",
border_l_indigo_900: "border-l-indigo-900",
border_l_inherit: "border-l-inherit",
border_l_lime_100: "border-l-lime-100",
border_l_lime_200: "border-l-lime-200",
border_l_lime_300: "border-l-lime-300",
border_l_lime_400: "border-l-lime-400",
border_l_lime_50: "border-l-lime-50",
border_l_lime_500: "border-l-lime-500",
border_l_lime_600: "border-l-lime-600",
border_l_lime_700: "border-l-lime-700",
border_l_lime_800: "border-l-lime-800",
border_l_lime_900: "border-l-lime-900",
border_l_neutral_100: "border-l-neutral-100",
border_l_neutral_200: "border-l-neutral-200",
border_l_neutral_300: "border-l-neutral-300",
border_l_neutral_400: "border-l-neutral-400",
border_l_neutral_50: "border-l-neutral-50",
border_l_neutral_500: "border-l-neutral-500",
border_l_neutral_600: "border-l-neutral-600",
border_l_neutral_700: "border-l-neutral-700",
border_l_neutral_800: "border-l-neutral-800",
border_l_neutral_900: "border-l-neutral-900",
border_l_orange_100: "border-l-orange-100",
border_l_orange_200: "border-l-orange-200",
border_l_orange_300: "border-l-orange-300",
border_l_orange_400: "border-l-orange-400",
border_l_orange_50: "border-l-orange-50",
border_l_orange_500: "border-l-orange-500",
border_l_orange_600: "border-l-orange-600",
border_l_orange_700: "border-l-orange-700",
border_l_orange_800: "border-l-orange-800",
border_l_orange_900: "border-l-orange-900",
border_l_pink_100: "border-l-pink-100",
border_l_pink_200: "border-l-pink-200",
border_l_pink_300: "border-l-pink-300",
border_l_pink_400: "border-l-pink-400",
border_l_pink_50: "border-l-pink-50",
border_l_pink_500: "border-l-pink-500",
border_l_pink_600: "border-l-pink-600",
border_l_pink_700: "border-l-pink-700",
border_l_pink_800: "border-l-pink-800",
border_l_pink_900: "border-l-pink-900",
border_l_purple_100: "border-l-purple-100",
border_l_purple_200: "border-l-purple-200",
border_l_purple_300: "border-l-purple-300",
border_l_purple_400: "border-l-purple-400",
border_l_purple_50: "border-l-purple-50",
border_l_purple_500: "border-l-purple-500",
border_l_purple_600: "border-l-purple-600",
border_l_purple_700: "border-l-purple-700",
border_l_purple_800: "border-l-purple-800",
border_l_purple_900: "border-l-purple-900",
border_l_red_100: "border-l-red-100",
border_l_red_200: "border-l-red-200",
border_l_red_300: "border-l-red-300",
border_l_red_400: "border-l-red-400",
border_l_red_50: "border-l-red-50",
border_l_red_500: "border-l-red-500",
border_l_red_600: "border-l-red-600",
border_l_red_700: "border-l-red-700",
border_l_red_800: "border-l-red-800",
border_l_red_900: "border-l-red-900",
border_l_rose_100: "border-l-rose-100",
border_l_rose_200: "border-l-rose-200",
border_l_rose_300: "border-l-rose-300",
border_l_rose_400: "border-l-rose-400",
border_l_rose_50: "border-l-rose-50",
border_l_rose_500: "border-l-rose-500",
border_l_rose_600: "border-l-rose-600",
border_l_rose_700: "border-l-rose-700",
border_l_rose_800: "border-l-rose-800",
border_l_rose_900: "border-l-rose-900",
border_l_sky_100: "border-l-sky-100",
border_l_sky_200: "border-l-sky-200",
border_l_sky_300: "border-l-sky-300",
border_l_sky_400: "border-l-sky-400",
border_l_sky_50: "border-l-sky-50",
border_l_sky_500: "border-l-sky-500",
border_l_sky_600: "border-l-sky-600",
border_l_sky_700: "border-l-sky-700",
border_l_sky_800: "border-l-sky-800",
border_l_sky_900: "border-l-sky-900",
border_l_slate_100: "border-l-slate-100",
border_l_slate_200: "border-l-slate-200",
border_l_slate_300: "border-l-slate-300",
border_l_slate_400: "border-l-slate-400",
border_l_slate_50: "border-l-slate-50",
border_l_slate_500: "border-l-slate-500",
border_l_slate_600: "border-l-slate-600",
border_l_slate_700: "border-l-slate-700",
border_l_slate_800: "border-l-slate-800",
border_l_slate_900: "border-l-slate-900",
border_l_stone_100: "border-l-stone-100",
border_l_stone_200: "border-l-stone-200",
border_l_stone_300: "border-l-stone-300",
border_l_stone_400: "border-l-stone-400",
border_l_stone_50: "border-l-stone-50",
border_l_stone_500: "border-l-stone-500",
border_l_stone_600: "border-l-stone-600",
border_l_stone_700: "border-l-stone-700",
border_l_stone_800: "border-l-stone-800",
border_l_stone_900: "border-l-stone-900",
border_l_teal_100: "border-l-teal-100",
border_l_teal_200: "border-l-teal-200",
border_l_teal_300: "border-l-teal-300",
border_l_teal_400: "border-l-teal-400",
border_l_teal_50: "border-l-teal-50",
border_l_teal_500: "border-l-teal-500",
border_l_teal_600: "border-l-teal-600",
border_l_teal_700: "border-l-teal-700",
border_l_teal_800: "border-l-teal-800",
border_l_teal_900: "border-l-teal-900",
border_l_transparent: "border-l-transparent",
border_l_violet_100: "border-l-violet-100",
border_l_violet_200: "border-l-violet-200",
border_l_violet_300: "border-l-violet-300",
border_l_violet_400: "border-l-violet-400",
border_l_violet_50: "border-l-violet-50",
border_l_violet_500: "border-l-violet-500",
border_l_violet_600: "border-l-violet-600",
border_l_violet_700: "border-l-violet-700",
border_l_violet_800: "border-l-violet-800",
border_l_violet_900: "border-l-violet-900",
border_l_white: "border-l-white",
border_l_yellow_100: "border-l-yellow-100",
border_l_yellow_200: "border-l-yellow-200",
border_l_yellow_300: "border-l-yellow-300",
border_l_yellow_400: "border-l-yellow-400",
border_l_yellow_50: "border-l-yellow-50",
border_l_yellow_500: "border-l-yellow-500",
border_l_yellow_600: "border-l-yellow-600",
border_l_yellow_700: "border-l-yellow-700",
border_l_yellow_800: "border-l-yellow-800",
border_l_yellow_900: "border-l-yellow-900",
border_l_zinc_100: "border-l-zinc-100",
border_l_zinc_200: "border-l-zinc-200",
border_l_zinc_300: "border-l-zinc-300",
border_l_zinc_400: "border-l-zinc-400",
border_l_zinc_50: "border-l-zinc-50",
border_l_zinc_500: "border-l-zinc-500",
border_l_zinc_600: "border-l-zinc-600",
border_l_zinc_700: "border-l-zinc-700",
border_l_zinc_800: "border-l-zinc-800",
border_l_zinc_900: "border-l-zinc-900",
border_lime_100: "border-lime-100",
border_lime_200: "border-lime-200",
border_lime_300: "border-lime-300",
border_lime_400: "border-lime-400",
border_lime_50: "border-lime-50",
border_lime_500: "border-lime-500",
border_lime_600: "border-lime-600",
border_lime_700: "border-lime-700",
border_lime_800: "border-lime-800",
border_lime_900: "border-lime-900",
border_neutral_100: "border-neutral-100",
border_neutral_200: "border-neutral-200",
border_neutral_300: "border-neutral-300",
border_neutral_400: "border-neutral-400",
border_neutral_50: "border-neutral-50",
border_neutral_500: "border-neutral-500",
border_neutral_600: "border-neutral-600",
border_neutral_700: "border-neutral-700",
border_neutral_800: "border-neutral-800",
border_neutral_900: "border-neutral-900",
border_none: "border-none",
border_opacity_0: "border-opacity-0",
border_opacity_10: "border-opacity-10",
border_opacity_100: "border-opacity-100",
border_opacity_20: "border-opacity-20",
border_opacity_25: "border-opacity-25",
border_opacity_30: "border-opacity-30",
border_opacity_40: "border-opacity-40",
border_opacity_5: "border-opacity-5",
border_opacity_50: "border-opacity-50",
border_opacity_60: "border-opacity-60",
border_opacity_70: "border-opacity-70",
border_opacity_75: "border-opacity-75",
border_opacity_80: "border-opacity-80",
border_opacity_90: "border-opacity-90",
border_opacity_95: "border-opacity-95",
border_orange_100: "border-orange-100",
border_orange_200: "border-orange-200",
border_orange_300: "border-orange-300",
border_orange_400: "border-orange-400",
border_orange_50: "border-orange-50",
border_orange_500: "border-orange-500",
border_orange_600: "border-orange-600",
border_orange_700: "border-orange-700",
border_orange_800: "border-orange-800",
border_orange_900: "border-orange-900",
border_pink_100: "border-pink-100",
border_pink_200: "border-pink-200",
border_pink_300: "border-pink-300",
border_pink_400: "border-pink-400",
border_pink_50: "border-pink-50",
border_pink_500: "border-pink-500",
border_pink_600: "border-pink-600",
border_pink_700: "border-pink-700",
border_pink_800: "border-pink-800",
border_pink_900: "border-pink-900",
border_purple_100: "border-purple-100",
border_purple_200: "border-purple-200",
border_purple_300: "border-purple-300",
border_purple_400: "border-purple-400",
border_purple_50: "border-purple-50",
border_purple_500: "border-purple-500",
border_purple_600: "border-purple-600",
border_purple_700: "border-purple-700",
border_purple_800: "border-purple-800",
border_purple_900: "border-purple-900",
border_r: "border-r",
border_r_0: "border-r-0",
border_r_2: "border-r-2",
border_r_4: "border-r-4",
border_r_8: "border-r-8",
border_r_amber_100: "border-r-amber-100",
border_r_amber_200: "border-r-amber-200",
border_r_amber_300: "border-r-amber-300",
border_r_amber_400: "border-r-amber-400",
border_r_amber_50: "border-r-amber-50",
border_r_amber_500: "border-r-amber-500",
border_r_amber_600: "border-r-amber-600",
border_r_amber_700: "border-r-amber-700",
border_r_amber_800: "border-r-amber-800",
border_r_amber_900: "border-r-amber-900",
border_r_black: "border-r-black",
border_r_blue_100: "border-r-blue-100",
border_r_blue_200: "border-r-blue-200",
border_r_blue_300: "border-r-blue-300",
border_r_blue_400: "border-r-blue-400",
border_r_blue_50: "border-r-blue-50",
border_r_blue_500: "border-r-blue-500",
border_r_blue_600: "border-r-blue-600",
border_r_blue_700: "border-r-blue-700",
border_r_blue_800: "border-r-blue-800",
border_r_blue_900: "border-r-blue-900",
border_r_current: "border-r-current",
border_r_cyan_100: "border-r-cyan-100",
border_r_cyan_200: "border-r-cyan-200",
border_r_cyan_300: "border-r-cyan-300",
border_r_cyan_400: "border-r-cyan-400",
border_r_cyan_50: "border-r-cyan-50",
border_r_cyan_500: "border-r-cyan-500",
border_r_cyan_600: "border-r-cyan-600",
border_r_cyan_700: "border-r-cyan-700",
border_r_cyan_800: "border-r-cyan-800",
border_r_cyan_900: "border-r-cyan-900",
border_r_emerald_100: "border-r-emerald-100",
border_r_emerald_200: "border-r-emerald-200",
border_r_emerald_300: "border-r-emerald-300",
border_r_emerald_400: "border-r-emerald-400",
border_r_emerald_50: "border-r-emerald-50",
border_r_emerald_500: "border-r-emerald-500",
border_r_emerald_600: "border-r-emerald-600",
border_r_emerald_700: "border-r-emerald-700",
border_r_emerald_800: "border-r-emerald-800",
border_r_emerald_900: "border-r-emerald-900",
border_r_fuchsia_100: "border-r-fuchsia-100",
border_r_fuchsia_200: "border-r-fuchsia-200",
border_r_fuchsia_300: "border-r-fuchsia-300",
border_r_fuchsia_400: "border-r-fuchsia-400",
border_r_fuchsia_50: "border-r-fuchsia-50",
border_r_fuchsia_500: "border-r-fuchsia-500",
border_r_fuchsia_600: "border-r-fuchsia-600",
border_r_fuchsia_700: "border-r-fuchsia-700",
border_r_fuchsia_800: "border-r-fuchsia-800",
border_r_fuchsia_900: "border-r-fuchsia-900",
border_r_gray_100: "border-r-gray-100",
border_r_gray_200: "border-r-gray-200",
border_r_gray_300: "border-r-gray-300",
border_r_gray_400: "border-r-gray-400",
border_r_gray_50: "border-r-gray-50",
border_r_gray_500: "border-r-gray-500",
border_r_gray_600: "border-r-gray-600",
border_r_gray_700: "border-r-gray-700",
border_r_gray_800: "border-r-gray-800",
border_r_gray_900: "border-r-gray-900",
border_r_green_100: "border-r-green-100",
border_r_green_200: "border-r-green-200",
border_r_green_300: "border-r-green-300",
border_r_green_400: "border-r-green-400",
border_r_green_50: "border-r-green-50",
border_r_green_500: "border-r-green-500",
border_r_green_600: "border-r-green-600",
border_r_green_700: "border-r-green-700",
border_r_green_800: "border-r-green-800",
border_r_green_900: "border-r-green-900",
border_r_indigo_100: "border-r-indigo-100",
border_r_indigo_200: "border-r-indigo-200",
border_r_indigo_300: "border-r-indigo-300",
border_r_indigo_400: "border-r-indigo-400",
border_r_indigo_50: "border-r-indigo-50",
border_r_indigo_500: "border-r-indigo-500",
border_r_indigo_600: "border-r-indigo-600",
border_r_indigo_700: "border-r-indigo-700",
border_r_indigo_800: "border-r-indigo-800",
border_r_indigo_900: "border-r-indigo-900",
border_r_inherit: "border-r-inherit",
border_r_lime_100: "border-r-lime-100",
border_r_lime_200: "border-r-lime-200",
border_r_lime_300: "border-r-lime-300",
border_r_lime_400: "border-r-lime-400",
border_r_lime_50: "border-r-lime-50",
border_r_lime_500: "border-r-lime-500",
border_r_lime_600: "border-r-lime-600",
border_r_lime_700: "border-r-lime-700",
border_r_lime_800: "border-r-lime-800",
border_r_lime_900: "border-r-lime-900",
border_r_neutral_100: "border-r-neutral-100",
border_r_neutral_200: "border-r-neutral-200",
border_r_neutral_300: "border-r-neutral-300",
border_r_neutral_400: "border-r-neutral-400",
border_r_neutral_50: "border-r-neutral-50",
border_r_neutral_500: "border-r-neutral-500",
border_r_neutral_600: "border-r-neutral-600",
border_r_neutral_700: "border-r-neutral-700",
border_r_neutral_800: "border-r-neutral-800",
border_r_neutral_900: "border-r-neutral-900",
border_r_orange_100: "border-r-orange-100",
border_r_orange_200: "border-r-orange-200",
border_r_orange_300: "border-r-orange-300",
border_r_orange_400: "border-r-orange-400",
border_r_orange_50: "border-r-orange-50",
border_r_orange_500: "border-r-orange-500",
border_r_orange_600: "border-r-orange-600",
border_r_orange_700: "border-r-orange-700",
border_r_orange_800: "border-r-orange-800",
border_r_orange_900: "border-r-orange-900",
border_r_pink_100: "border-r-pink-100",
border_r_pink_200: "border-r-pink-200",
border_r_pink_300: "border-r-pink-300",
border_r_pink_400: "border-r-pink-400",
border_r_pink_50: "border-r-pink-50",
border_r_pink_500: "border-r-pink-500",
border_r_pink_600: "border-r-pink-600",
border_r_pink_700: "border-r-pink-700",
border_r_pink_800: "border-r-pink-800",
border_r_pink_900: "border-r-pink-900",
border_r_purple_100: "border-r-purple-100",
border_r_purple_200: "border-r-purple-200",
border_r_purple_300: "border-r-purple-300",
border_r_purple_400: "border-r-purple-400",
border_r_purple_50: "border-r-purple-50",
border_r_purple_500: "border-r-purple-500",
border_r_purple_600: "border-r-purple-600",
border_r_purple_700: "border-r-purple-700",
border_r_purple_800: "border-r-purple-800",
border_r_purple_900: "border-r-purple-900",
border_r_red_100: "border-r-red-100",
border_r_red_200: "border-r-red-200",
border_r_red_300: "border-r-red-300",
border_r_red_400: "border-r-red-400",
border_r_red_50: "border-r-red-50",
border_r_red_500: "border-r-red-500",
border_r_red_600: "border-r-red-600",
border_r_red_700: "border-r-red-700",
border_r_red_800: "border-r-red-800",
border_r_red_900: "border-r-red-900",
border_r_rose_100: "border-r-rose-100",
border_r_rose_200: "border-r-rose-200",
border_r_rose_300: "border-r-rose-300",
border_r_rose_400: "border-r-rose-400",
border_r_rose_50: "border-r-rose-50",
border_r_rose_500: "border-r-rose-500",
border_r_rose_600: "border-r-rose-600",
border_r_rose_700: "border-r-rose-700",
border_r_rose_800: "border-r-rose-800",
border_r_rose_900: "border-r-rose-900",
border_r_sky_100: "border-r-sky-100",
border_r_sky_200: "border-r-sky-200",
border_r_sky_300: "border-r-sky-300",
border_r_sky_400: "border-r-sky-400",
border_r_sky_50: "border-r-sky-50",
border_r_sky_500: "border-r-sky-500",
border_r_sky_600: "border-r-sky-600",
border_r_sky_700: "border-r-sky-700",
border_r_sky_800: "border-r-sky-800",
border_r_sky_900: "border-r-sky-900",
border_r_slate_100: "border-r-slate-100",
border_r_slate_200: "border-r-slate-200",
border_r_slate_300: "border-r-slate-300",
border_r_slate_400: "border-r-slate-400",
border_r_slate_50: "border-r-slate-50",
border_r_slate_500: "border-r-slate-500",
border_r_slate_600: "border-r-slate-600",
border_r_slate_700: "border-r-slate-700",
border_r_slate_800: "border-r-slate-800",
border_r_slate_900: "border-r-slate-900",
border_r_stone_100: "border-r-stone-100",
border_r_stone_200: "border-r-stone-200",
border_r_stone_300: "border-r-stone-300",
border_r_stone_400: "border-r-stone-400",
border_r_stone_50: "border-r-stone-50",
border_r_stone_500: "border-r-stone-500",
border_r_stone_600: "border-r-stone-600",
border_r_stone_700: "border-r-stone-700",
border_r_stone_800: "border-r-stone-800",
border_r_stone_900: "border-r-stone-900",
border_r_teal_100: "border-r-teal-100",
border_r_teal_200: "border-r-teal-200",
border_r_teal_300: "border-r-teal-300",
border_r_teal_400: "border-r-teal-400",
border_r_teal_50: "border-r-teal-50",
border_r_teal_500: "border-r-teal-500",
border_r_teal_600: "border-r-teal-600",
border_r_teal_700: "border-r-teal-700",
border_r_teal_800: "border-r-teal-800",
border_r_teal_900: "border-r-teal-900",
border_r_transparent: "border-r-transparent",
border_r_violet_100: "border-r-violet-100",
border_r_violet_200: "border-r-violet-200",
border_r_violet_300: "border-r-violet-300",
border_r_violet_400: "border-r-violet-400",
border_r_violet_50: "border-r-violet-50",
border_r_violet_500: "border-r-violet-500",
border_r_violet_600: "border-r-violet-600",
border_r_violet_700: "border-r-violet-700",
border_r_violet_800: "border-r-violet-800",
border_r_violet_900: "border-r-violet-900",
border_r_white: "border-r-white",
border_r_yellow_100: "border-r-yellow-100",
border_r_yellow_200: "border-r-yellow-200",
border_r_yellow_300: "border-r-yellow-300",
border_r_yellow_400: "border-r-yellow-400",
border_r_yellow_50: "border-r-yellow-50",
border_r_yellow_500: "border-r-yellow-500",
border_r_yellow_600: "border-r-yellow-600",
border_r_yellow_700: "border-r-yellow-700",
border_r_yellow_800: "border-r-yellow-800",
border_r_yellow_900: "border-r-yellow-900",
border_r_zinc_100: "border-r-zinc-100",
border_r_zinc_200: "border-r-zinc-200",
border_r_zinc_300: "border-r-zinc-300",
border_r_zinc_400: "border-r-zinc-400",
border_r_zinc_50: "border-r-zinc-50",
border_r_zinc_500: "border-r-zinc-500",
border_r_zinc_600: "border-r-zinc-600",
border_r_zinc_700: "border-r-zinc-700",
border_r_zinc_800: "border-r-zinc-800",
border_r_zinc_900: "border-r-zinc-900",
border_red_100: "border-red-100",
border_red_200: "border-red-200",
border_red_300: "border-red-300",
border_red_400: "border-red-400",
border_red_50: "border-red-50",
border_red_500: "border-red-500",
border_red_600: "border-red-600",
border_red_700: "border-red-700",
border_red_800: "border-red-800",
border_red_900: "border-red-900",
border_rose_100: "border-rose-100",
border_rose_200: "border-rose-200",
border_rose_300: "border-rose-300",
border_rose_400: "border-rose-400",
border_rose_50: "border-rose-50",
border_rose_500: "border-rose-500",
border_rose_600: "border-rose-600",
border_rose_700: "border-rose-700",
border_rose_800: "border-rose-800",
border_rose_900: "border-rose-900",
border_sky_100: "border-sky-100",
border_sky_200: "border-sky-200",
border_sky_300: "border-sky-300",
border_sky_400: "border-sky-400",
border_sky_50: "border-sky-50",
border_sky_500: "border-sky-500",
border_sky_600: "border-sky-600",
border_sky_700: "border-sky-700",
border_sky_800: "border-sky-800",
border_sky_900: "border-sky-900",
border_slate_100: "border-slate-100",
border_slate_200: "border-slate-200",
border_slate_300: "border-slate-300",
border_slate_400: "border-slate-400",
border_slate_50: "border-slate-50",
border_slate_500: "border-slate-500",
border_slate_600: "border-slate-600",
border_slate_700: "border-slate-700",
border_slate_800: "border-slate-800",
border_slate_900: "border-slate-900",
border_solid: "border-solid",
border_stone_100: "border-stone-100",
border_stone_200: "border-stone-200",
border_stone_300: "border-stone-300",
border_stone_400: "border-stone-400",
border_stone_50: "border-stone-50",
border_stone_500: "border-stone-500",
border_stone_600: "border-stone-600",
border_stone_700: "border-stone-700",
border_stone_800: "border-stone-800",
border_stone_900: "border-stone-900",
border_t: "border-t",
border_t_0: "border-t-0",
border_t_2: "border-t-2",
border_t_4: "border-t-4",
border_t_8: "border-t-8",
border_t_amber_100: "border-t-amber-100",
border_t_amber_200: "border-t-amber-200",
border_t_amber_300: "border-t-amber-300",
border_t_amber_400: "border-t-amber-400",
border_t_amber_50: "border-t-amber-50",
border_t_amber_500: "border-t-amber-500",
border_t_amber_600: "border-t-amber-600",
border_t_amber_700: "border-t-amber-700",
border_t_amber_800: "border-t-amber-800",
border_t_amber_900: "border-t-amber-900",
border_t_black: "border-t-black",
border_t_blue_100: "border-t-blue-100",
border_t_blue_200: "border-t-blue-200",
border_t_blue_300: "border-t-blue-300",
border_t_blue_400: "border-t-blue-400",
border_t_blue_50: "border-t-blue-50",
border_t_blue_500: "border-t-blue-500",
border_t_blue_600: "border-t-blue-600",
border_t_blue_700: "border-t-blue-700",
border_t_blue_800: "border-t-blue-800",
border_t_blue_900: "border-t-blue-900",
border_t_current: "border-t-current",
border_t_cyan_100: "border-t-cyan-100",
border_t_cyan_200: "border-t-cyan-200",
border_t_cyan_300: "border-t-cyan-300",
border_t_cyan_400: "border-t-cyan-400",
border_t_cyan_50: "border-t-cyan-50",
border_t_cyan_500: "border-t-cyan-500",
border_t_cyan_600: "border-t-cyan-600",
border_t_cyan_700: "border-t-cyan-700",
border_t_cyan_800: "border-t-cyan-800",
border_t_cyan_900: "border-t-cyan-900",
border_t_emerald_100: "border-t-emerald-100",
border_t_emerald_200: "border-t-emerald-200",
border_t_emerald_300: "border-t-emerald-300",
border_t_emerald_400: "border-t-emerald-400",
border_t_emerald_50: "border-t-emerald-50",
border_t_emerald_500: "border-t-emerald-500",
border_t_emerald_600: "border-t-emerald-600",
border_t_emerald_700: "border-t-emerald-700",
border_t_emerald_800: "border-t-emerald-800",
border_t_emerald_900: "border-t-emerald-900",
border_t_fuchsia_100: "border-t-fuchsia-100",
border_t_fuchsia_200: "border-t-fuchsia-200",
border_t_fuchsia_300: "border-t-fuchsia-300",
border_t_fuchsia_400: "border-t-fuchsia-400",
border_t_fuchsia_50: "border-t-fuchsia-50",
border_t_fuchsia_500: "border-t-fuchsia-500",
border_t_fuchsia_600: "border-t-fuchsia-600",
border_t_fuchsia_700: "border-t-fuchsia-700",
border_t_fuchsia_800: "border-t-fuchsia-800",
border_t_fuchsia_900: "border-t-fuchsia-900",
border_t_gray_100: "border-t-gray-100",
border_t_gray_200: "border-t-gray-200",
border_t_gray_300: "border-t-gray-300",
border_t_gray_400: "border-t-gray-400",
border_t_gray_50: "border-t-gray-50",
border_t_gray_500: "border-t-gray-500",
border_t_gray_600: "border-t-gray-600",
border_t_gray_700: "border-t-gray-700",
border_t_gray_800: "border-t-gray-800",
border_t_gray_900: "border-t-gray-900",
border_t_green_100: "border-t-green-100",
border_t_green_200: "border-t-green-200",
border_t_green_300: "border-t-green-300",
border_t_green_400: "border-t-green-400",
border_t_green_50: "border-t-green-50",
border_t_green_500: "border-t-green-500",
border_t_green_600: "border-t-green-600",
border_t_green_700: "border-t-green-700",
border_t_green_800: "border-t-green-800",
border_t_green_900: "border-t-green-900",
border_t_indigo_100: "border-t-indigo-100",
border_t_indigo_200: "border-t-indigo-200",
border_t_indigo_300: "border-t-indigo-300",
border_t_indigo_400: "border-t-indigo-400",
border_t_indigo_50: "border-t-indigo-50",
border_t_indigo_500: "border-t-indigo-500",
border_t_indigo_600: "border-t-indigo-600",
border_t_indigo_700: "border-t-indigo-700",
border_t_indigo_800: "border-t-indigo-800",
border_t_indigo_900: "border-t-indigo-900",
border_t_inherit: "border-t-inherit",
border_t_lime_100: "border-t-lime-100",
border_t_lime_200: "border-t-lime-200",
border_t_lime_300: "border-t-lime-300",
border_t_lime_400: "border-t-lime-400",
border_t_lime_50: "border-t-lime-50",
border_t_lime_500: "border-t-lime-500",
border_t_lime_600: "border-t-lime-600",
border_t_lime_700: "border-t-lime-700",
border_t_lime_800: "border-t-lime-800",
border_t_lime_900: "border-t-lime-900",
border_t_neutral_100: "border-t-neutral-100",
border_t_neutral_200: "border-t-neutral-200",
border_t_neutral_300: "border-t-neutral-300",
border_t_neutral_400: "border-t-neutral-400",
border_t_neutral_50: "border-t-neutral-50",
border_t_neutral_500: "border-t-neutral-500",
border_t_neutral_600: "border-t-neutral-600",
border_t_neutral_700: "border-t-neutral-700",
border_t_neutral_800: "border-t-neutral-800",
border_t_neutral_900: "border-t-neutral-900",
border_t_orange_100: "border-t-orange-100",
border_t_orange_200: "border-t-orange-200",
border_t_orange_300: "border-t-orange-300",
border_t_orange_400: "border-t-orange-400",
border_t_orange_50: "border-t-orange-50",
border_t_orange_500: "border-t-orange-500",
border_t_orange_600: "border-t-orange-600",
border_t_orange_700: "border-t-orange-700",
border_t_orange_800: "border-t-orange-800",
border_t_orange_900: "border-t-orange-900",
border_t_pink_100: "border-t-pink-100",
border_t_pink_200: "border-t-pink-200",
border_t_pink_300: "border-t-pink-300",
border_t_pink_400: "border-t-pink-400",
border_t_pink_50: "border-t-pink-50",
border_t_pink_500: "border-t-pink-500",
border_t_pink_600: "border-t-pink-600",
border_t_pink_700: "border-t-pink-700",
border_t_pink_800: "border-t-pink-800",
border_t_pink_900: "border-t-pink-900",
border_t_purple_100: "border-t-purple-100",
border_t_purple_200: "border-t-purple-200",
border_t_purple_300: "border-t-purple-300",
border_t_purple_400: "border-t-purple-400",
border_t_purple_50: "border-t-purple-50",
border_t_purple_500: "border-t-purple-500",
border_t_purple_600: "border-t-purple-600",
border_t_purple_700: "border-t-purple-700",
border_t_purple_800: "border-t-purple-800",
border_t_purple_900: "border-t-purple-900",
border_t_red_100: "border-t-red-100",
border_t_red_200: "border-t-red-200",
border_t_red_300: "border-t-red-300",
border_t_red_400: "border-t-red-400",
border_t_red_50: "border-t-red-50",
border_t_red_500: "border-t-red-500",
border_t_red_600: "border-t-red-600",
border_t_red_700: "border-t-red-700",
border_t_red_800: "border-t-red-800",
border_t_red_900: "border-t-red-900",
border_t_rose_100: "border-t-rose-100",
border_t_rose_200: "border-t-rose-200",
border_t_rose_300: "border-t-rose-300",
border_t_rose_400: "border-t-rose-400",
border_t_rose_50: "border-t-rose-50",
border_t_rose_500: "border-t-rose-500",
border_t_rose_600: "border-t-rose-600",
border_t_rose_700: "border-t-rose-700",
border_t_rose_800: "border-t-rose-800",
border_t_rose_900: "border-t-rose-900",
border_t_sky_100: "border-t-sky-100",
border_t_sky_200: "border-t-sky-200",
border_t_sky_300: "border-t-sky-300",
border_t_sky_400: "border-t-sky-400",
border_t_sky_50: "border-t-sky-50",
border_t_sky_500: "border-t-sky-500",
border_t_sky_600: "border-t-sky-600",
border_t_sky_700: "border-t-sky-700",
border_t_sky_800: "border-t-sky-800",
border_t_sky_900: "border-t-sky-900",
border_t_slate_100: "border-t-slate-100",
border_t_slate_200: "border-t-slate-200",
border_t_slate_300: "border-t-slate-300",
border_t_slate_400: "border-t-slate-400",
border_t_slate_50: "border-t-slate-50",
border_t_slate_500: "border-t-slate-500",
border_t_slate_600: "border-t-slate-600",
border_t_slate_700: "border-t-slate-700",
border_t_slate_800: "border-t-slate-800",
border_t_slate_900: "border-t-slate-900",
border_t_stone_100: "border-t-stone-100",
border_t_stone_200: "border-t-stone-200",
border_t_stone_300: "border-t-stone-300",
border_t_stone_400: "border-t-stone-400",
border_t_stone_50: "border-t-stone-50",
border_t_stone_500: "border-t-stone-500",
border_t_stone_600: "border-t-stone-600",
border_t_stone_700: "border-t-stone-700",
border_t_stone_800: "border-t-stone-800",
border_t_stone_900: "border-t-stone-900",
border_t_teal_100: "border-t-teal-100",
border_t_teal_200: "border-t-teal-200",
border_t_teal_300: "border-t-teal-300",
border_t_teal_400: "border-t-teal-400",
border_t_teal_50: "border-t-teal-50",
border_t_teal_500: "border-t-teal-500",
border_t_teal_600: "border-t-teal-600",
border_t_teal_700: "border-t-teal-700",
border_t_teal_800: "border-t-teal-800",
border_t_teal_900: "border-t-teal-900",
border_t_transparent: "border-t-transparent",
border_t_violet_100: "border-t-violet-100",
border_t_violet_200: "border-t-violet-200",
border_t_violet_300: "border-t-violet-300",
border_t_violet_400: "border-t-violet-400",
border_t_violet_50: "border-t-violet-50",
border_t_violet_500: "border-t-violet-500",
border_t_violet_600: "border-t-violet-600",
border_t_violet_700: "border-t-violet-700",
border_t_violet_800: "border-t-violet-800",
border_t_violet_900: "border-t-violet-900",
border_t_white: "border-t-white",
border_t_yellow_100: "border-t-yellow-100",
border_t_yellow_200: "border-t-yellow-200",
border_t_yellow_300: "border-t-yellow-300",
border_t_yellow_400: "border-t-yellow-400",
border_t_yellow_50: "border-t-yellow-50",
border_t_yellow_500: "border-t-yellow-500",
border_t_yellow_600: "border-t-yellow-600",
border_t_yellow_700: "border-t-yellow-700",
border_t_yellow_800: "border-t-yellow-800",
border_t_yellow_900: "border-t-yellow-900",
border_t_zinc_100: "border-t-zinc-100",
border_t_zinc_200: "border-t-zinc-200",
border_t_zinc_300: "border-t-zinc-300",
border_t_zinc_400: "border-t-zinc-400",
border_t_zinc_50: "border-t-zinc-50",
border_t_zinc_500: "border-t-zinc-500",
border_t_zinc_600: "border-t-zinc-600",
border_t_zinc_700: "border-t-zinc-700",
border_t_zinc_800: "border-t-zinc-800",
border_t_zinc_900: "border-t-zinc-900",
border_teal_100: "border-teal-100",
border_teal_200: "border-teal-200",
border_teal_300: "border-teal-300",
border_teal_400: "border-teal-400",
border_teal_50: "border-teal-50",
border_teal_500: "border-teal-500",
border_teal_600: "border-teal-600",
border_teal_700: "border-teal-700",
border_teal_800: "border-teal-800",
border_teal_900: "border-teal-900",
border_transparent: "border-transparent",
border_violet_100: "border-violet-100",
border_violet_200: "border-violet-200",
border_violet_300: "border-violet-300",
border_violet_400: "border-violet-400",
border_violet_50: "border-violet-50",
border_violet_500: "border-violet-500",
border_violet_600: "border-violet-600",
border_violet_700: "border-violet-700",
border_violet_800: "border-violet-800",
border_violet_900: "border-violet-900",
border_white: "border-white",
border_x: "border-x",
border_x_0: "border-x-0",
border_x_2: "border-x-2",
border_x_4: "border-x-4",
border_x_8: "border-x-8",
border_x_amber_100: "border-x-amber-100",
border_x_amber_200: "border-x-amber-200",
border_x_amber_300: "border-x-amber-300",
border_x_amber_400: "border-x-amber-400",
border_x_amber_50: "border-x-amber-50",
border_x_amber_500: "border-x-amber-500",
border_x_amber_600: "border-x-amber-600",
border_x_amber_700: "border-x-amber-700",
border_x_amber_800: "border-x-amber-800",
border_x_amber_900: "border-x-amber-900",
border_x_black: "border-x-black",
border_x_blue_100: "border-x-blue-100",
border_x_blue_200: "border-x-blue-200",
border_x_blue_300: "border-x-blue-300",
border_x_blue_400: "border-x-blue-400",
border_x_blue_50: "border-x-blue-50",
border_x_blue_500: "border-x-blue-500",
border_x_blue_600: "border-x-blue-600",
border_x_blue_700: "border-x-blue-700",
border_x_blue_800: "border-x-blue-800",
border_x_blue_900: "border-x-blue-900",
border_x_current: "border-x-current",
border_x_cyan_100: "border-x-cyan-100",
border_x_cyan_200: "border-x-cyan-200",
border_x_cyan_300: "border-x-cyan-300",
border_x_cyan_400: "border-x-cyan-400",
border_x_cyan_50: "border-x-cyan-50",
border_x_cyan_500: "border-x-cyan-500",
border_x_cyan_600: "border-x-cyan-600",
border_x_cyan_700: "border-x-cyan-700",
border_x_cyan_800: "border-x-cyan-800",
border_x_cyan_900: "border-x-cyan-900",
border_x_emerald_100: "border-x-emerald-100",
border_x_emerald_200: "border-x-emerald-200",
border_x_emerald_300: "border-x-emerald-300",
border_x_emerald_400: "border-x-emerald-400",
border_x_emerald_50: "border-x-emerald-50",
border_x_emerald_500: "border-x-emerald-500",
border_x_emerald_600: "border-x-emerald-600",
border_x_emerald_700: "border-x-emerald-700",
border_x_emerald_800: "border-x-emerald-800",
border_x_emerald_900: "border-x-emerald-900",
border_x_fuchsia_100: "border-x-fuchsia-100",
border_x_fuchsia_200: "border-x-fuchsia-200",
border_x_fuchsia_300: "border-x-fuchsia-300",
border_x_fuchsia_400: "border-x-fuchsia-400",
border_x_fuchsia_50: "border-x-fuchsia-50",
border_x_fuchsia_500: "border-x-fuchsia-500",
border_x_fuchsia_600: "border-x-fuchsia-600",
border_x_fuchsia_700: "border-x-fuchsia-700",
border_x_fuchsia_800: "border-x-fuchsia-800",
border_x_fuchsia_900: "border-x-fuchsia-900",
border_x_gray_100: "border-x-gray-100",
border_x_gray_200: "border-x-gray-200",
border_x_gray_300: "border-x-gray-300",
border_x_gray_400: "border-x-gray-400",
border_x_gray_50: "border-x-gray-50",
border_x_gray_500: "border-x-gray-500",
border_x_gray_600: "border-x-gray-600",
border_x_gray_700: "border-x-gray-700",
border_x_gray_800: "border-x-gray-800",
border_x_gray_900: "border-x-gray-900",
border_x_green_100: "border-x-green-100",
border_x_green_200: "border-x-green-200",
border_x_green_300: "border-x-green-300",
border_x_green_400: "border-x-green-400",
border_x_green_50: "border-x-green-50",
border_x_green_500: "border-x-green-500",
border_x_green_600: "border-x-green-600",
border_x_green_700: "border-x-green-700",
border_x_green_800: "border-x-green-800",
border_x_green_900: "border-x-green-900",
border_x_indigo_100: "border-x-indigo-100",
border_x_indigo_200: "border-x-indigo-200",
border_x_indigo_300: "border-x-indigo-300",
border_x_indigo_400: "border-x-indigo-400",
border_x_indigo_50: "border-x-indigo-50",
border_x_indigo_500: "border-x-indigo-500",
border_x_indigo_600: "border-x-indigo-600",
border_x_indigo_700: "border-x-indigo-700",
border_x_indigo_800: "border-x-indigo-800",
border_x_indigo_900: "border-x-indigo-900",
border_x_inherit: "border-x-inherit",
border_x_lime_100: "border-x-lime-100",
border_x_lime_200: "border-x-lime-200",
border_x_lime_300: "border-x-lime-300",
border_x_lime_400: "border-x-lime-400",
border_x_lime_50: "border-x-lime-50",
border_x_lime_500: "border-x-lime-500",
border_x_lime_600: "border-x-lime-600",
border_x_lime_700: "border-x-lime-700",
border_x_lime_800: "border-x-lime-800",
border_x_lime_900: "border-x-lime-900",
border_x_neutral_100: "border-x-neutral-100",
border_x_neutral_200: "border-x-neutral-200",
border_x_neutral_300: "border-x-neutral-300",
border_x_neutral_400: "border-x-neutral-400",
border_x_neutral_50: "border-x-neutral-50",
border_x_neutral_500: "border-x-neutral-500",
border_x_neutral_600: "border-x-neutral-600",
border_x_neutral_700: "border-x-neutral-700",
border_x_neutral_800: "border-x-neutral-800",
border_x_neutral_900: "border-x-neutral-900",
border_x_orange_100: "border-x-orange-100",
border_x_orange_200: "border-x-orange-200",
border_x_orange_300: "border-x-orange-300",
border_x_orange_400: "border-x-orange-400",
border_x_orange_50: "border-x-orange-50",
border_x_orange_500: "border-x-orange-500",
border_x_orange_600: "border-x-orange-600",
border_x_orange_700: "border-x-orange-700",
border_x_orange_800: "border-x-orange-800",
border_x_orange_900: "border-x-orange-900",
border_x_pink_100: "border-x-pink-100",
border_x_pink_200: "border-x-pink-200",
border_x_pink_300: "border-x-pink-300",
border_x_pink_400: "border-x-pink-400",
border_x_pink_50: "border-x-pink-50",
border_x_pink_500: "border-x-pink-500",
border_x_pink_600: "border-x-pink-600",
border_x_pink_700: "border-x-pink-700",
border_x_pink_800: "border-x-pink-800",
border_x_pink_900: "border-x-pink-900",
border_x_purple_100: "border-x-purple-100",
border_x_purple_200: "border-x-purple-200",
border_x_purple_300: "border-x-purple-300",
border_x_purple_400: "border-x-purple-400",
border_x_purple_50: "border-x-purple-50",
border_x_purple_500: "border-x-purple-500",
border_x_purple_600: "border-x-purple-600",
border_x_purple_700: "border-x-purple-700",
border_x_purple_800: "border-x-purple-800",
border_x_purple_900: "border-x-purple-900",
border_x_red_100: "border-x-red-100",
border_x_red_200: "border-x-red-200",
border_x_red_300: "border-x-red-300",
border_x_red_400: "border-x-red-400",
border_x_red_50: "border-x-red-50",
border_x_red_500: "border-x-red-500",
border_x_red_600: "border-x-red-600",
border_x_red_700: "border-x-red-700",
border_x_red_800: "border-x-red-800",
border_x_red_900: "border-x-red-900",
border_x_rose_100: "border-x-rose-100",
border_x_rose_200: "border-x-rose-200",
border_x_rose_300: "border-x-rose-300",
border_x_rose_400: "border-x-rose-400",
border_x_rose_50: "border-x-rose-50",
border_x_rose_500: "border-x-rose-500",
border_x_rose_600: "border-x-rose-600",
border_x_rose_700: "border-x-rose-700",
border_x_rose_800: "border-x-rose-800",
border_x_rose_900: "border-x-rose-900",
border_x_sky_100: "border-x-sky-100",
border_x_sky_200: "border-x-sky-200",
border_x_sky_300: "border-x-sky-300",
border_x_sky_400: "border-x-sky-400",
border_x_sky_50: "border-x-sky-50",
border_x_sky_500: "border-x-sky-500",
border_x_sky_600: "border-x-sky-600",
border_x_sky_700: "border-x-sky-700",
border_x_sky_800: "border-x-sky-800",
border_x_sky_900: "border-x-sky-900",
border_x_slate_100: "border-x-slate-100",
border_x_slate_200: "border-x-slate-200",
border_x_slate_300: "border-x-slate-300",
border_x_slate_400: "border-x-slate-400",
border_x_slate_50: "border-x-slate-50",
border_x_slate_500: "border-x-slate-500",
border_x_slate_600: "border-x-slate-600",
border_x_slate_700: "border-x-slate-700",
border_x_slate_800: "border-x-slate-800",
border_x_slate_900: "border-x-slate-900",
border_x_stone_100: "border-x-stone-100",
border_x_stone_200: "border-x-stone-200",
border_x_stone_300: "border-x-stone-300",
border_x_stone_400: "border-x-stone-400",
border_x_stone_50: "border-x-stone-50",
border_x_stone_500: "border-x-stone-500",
border_x_stone_600: "border-x-stone-600",
border_x_stone_700: "border-x-stone-700",
border_x_stone_800: "border-x-stone-800",
border_x_stone_900: "border-x-stone-900",
border_x_teal_100: "border-x-teal-100",
border_x_teal_200: "border-x-teal-200",
border_x_teal_300: "border-x-teal-300",
border_x_teal_400: "border-x-teal-400",
border_x_teal_50: "border-x-teal-50",
border_x_teal_500: "border-x-teal-500",
border_x_teal_600: "border-x-teal-600",
border_x_teal_700: "border-x-teal-700",
border_x_teal_800: "border-x-teal-800",
border_x_teal_900: "border-x-teal-900",
border_x_transparent: "border-x-transparent",
border_x_violet_100: "border-x-violet-100",
border_x_violet_200: "border-x-violet-200",
border_x_violet_300: "border-x-violet-300",
border_x_violet_400: "border-x-violet-400",
border_x_violet_50: "border-x-violet-50",
border_x_violet_500: "border-x-violet-500",
border_x_violet_600: "border-x-violet-600",
border_x_violet_700: "border-x-violet-700",
border_x_violet_800: "border-x-violet-800",
border_x_violet_900: "border-x-violet-900",
border_x_white: "border-x-white",
border_x_yellow_100: "border-x-yellow-100",
border_x_yellow_200: "border-x-yellow-200",
border_x_yellow_300: "border-x-yellow-300",
border_x_yellow_400: "border-x-yellow-400",
border_x_yellow_50: "border-x-yellow-50",
border_x_yellow_500: "border-x-yellow-500",
border_x_yellow_600: "border-x-yellow-600",
border_x_yellow_700: "border-x-yellow-700",
border_x_yellow_800: "border-x-yellow-800",
border_x_yellow_900: "border-x-yellow-900",
border_x_zinc_100: "border-x-zinc-100",
border_x_zinc_200: "border-x-zinc-200",
border_x_zinc_300: "border-x-zinc-300",
border_x_zinc_400: "border-x-zinc-400",
border_x_zinc_50: "border-x-zinc-50",
border_x_zinc_500: "border-x-zinc-500",
border_x_zinc_600: "border-x-zinc-600",
border_x_zinc_700: "border-x-zinc-700",
border_x_zinc_800: "border-x-zinc-800",
border_x_zinc_900: "border-x-zinc-900",
border_y: "border-y",
border_y_0: "border-y-0",
border_y_2: "border-y-2",
border_y_4: "border-y-4",
border_y_8: "border-y-8",
border_y_amber_100: "border-y-amber-100",
border_y_amber_200: "border-y-amber-200",
border_y_amber_300: "border-y-amber-300",
border_y_amber_400: "border-y-amber-400",
border_y_amber_50: "border-y-amber-50",
border_y_amber_500: "border-y-amber-500",
border_y_amber_600: "border-y-amber-600",
border_y_amber_700: "border-y-amber-700",
border_y_amber_800: "border-y-amber-800",
border_y_amber_900: "border-y-amber-900",
border_y_black: "border-y-black",
border_y_blue_100: "border-y-blue-100",
border_y_blue_200: "border-y-blue-200",
border_y_blue_300: "border-y-blue-300",
border_y_blue_400: "border-y-blue-400",
border_y_blue_50: "border-y-blue-50",
border_y_blue_500: "border-y-blue-500",
border_y_blue_600: "border-y-blue-600",
border_y_blue_700: "border-y-blue-700",
border_y_blue_800: "border-y-blue-800",
border_y_blue_900: "border-y-blue-900",
border_y_current: "border-y-current",
border_y_cyan_100: "border-y-cyan-100",
border_y_cyan_200: "border-y-cyan-200",
border_y_cyan_300: "border-y-cyan-300",
border_y_cyan_400: "border-y-cyan-400",
border_y_cyan_50: "border-y-cyan-50",
border_y_cyan_500: "border-y-cyan-500",
border_y_cyan_600: "border-y-cyan-600",
border_y_cyan_700: "border-y-cyan-700",
border_y_cyan_800: "border-y-cyan-800",
border_y_cyan_900: "border-y-cyan-900",
border_y_emerald_100: "border-y-emerald-100",
border_y_emerald_200: "border-y-emerald-200",
border_y_emerald_300: "border-y-emerald-300",
border_y_emerald_400: "border-y-emerald-400",
border_y_emerald_50: "border-y-emerald-50",
border_y_emerald_500: "border-y-emerald-500",
border_y_emerald_600: "border-y-emerald-600",
border_y_emerald_700: "border-y-emerald-700",
border_y_emerald_800: "border-y-emerald-800",
border_y_emerald_900: "border-y-emerald-900",
border_y_fuchsia_100: "border-y-fuchsia-100",
border_y_fuchsia_200: "border-y-fuchsia-200",
border_y_fuchsia_300: "border-y-fuchsia-300",
border_y_fuchsia_400: "border-y-fuchsia-400",
border_y_fuchsia_50: "border-y-fuchsia-50",
border_y_fuchsia_500: "border-y-fuchsia-500",
border_y_fuchsia_600: "border-y-fuchsia-600",
border_y_fuchsia_700: "border-y-fuchsia-700",
border_y_fuchsia_800: "border-y-fuchsia-800",
border_y_fuchsia_900: "border-y-fuchsia-900",
border_y_gray_100: "border-y-gray-100",
border_y_gray_200: "border-y-gray-200",
border_y_gray_300: "border-y-gray-300",
border_y_gray_400: "border-y-gray-400",
border_y_gray_50: "border-y-gray-50",
border_y_gray_500: "border-y-gray-500",
border_y_gray_600: "border-y-gray-600",
border_y_gray_700: "border-y-gray-700",
border_y_gray_800: "border-y-gray-800",
border_y_gray_900: "border-y-gray-900",
border_y_green_100: "border-y-green-100",
border_y_green_200: "border-y-green-200",
border_y_green_300: "border-y-green-300",
border_y_green_400: "border-y-green-400",
border_y_green_50: "border-y-green-50",
border_y_green_500: "border-y-green-500",
border_y_green_600: "border-y-green-600",
border_y_green_700: "border-y-green-700",
border_y_green_800: "border-y-green-800",
border_y_green_900: "border-y-green-900",
border_y_indigo_100: "border-y-indigo-100",
border_y_indigo_200: "border-y-indigo-200",
border_y_indigo_300: "border-y-indigo-300",
border_y_indigo_400: "border-y-indigo-400",
border_y_indigo_50: "border-y-indigo-50",
border_y_indigo_500: "border-y-indigo-500",
border_y_indigo_600: "border-y-indigo-600",
border_y_indigo_700: "border-y-indigo-700",
border_y_indigo_800: "border-y-indigo-800",
border_y_indigo_900: "border-y-indigo-900",
border_y_inherit: "border-y-inherit",
border_y_lime_100: "border-y-lime-100",
border_y_lime_200: "border-y-lime-200",
border_y_lime_300: "border-y-lime-300",
border_y_lime_400: "border-y-lime-400",
border_y_lime_50: "border-y-lime-50",
border_y_lime_500: "border-y-lime-500",
border_y_lime_600: "border-y-lime-600",
border_y_lime_700: "border-y-lime-700",
border_y_lime_800: "border-y-lime-800",
border_y_lime_900: "border-y-lime-900",
border_y_neutral_100: "border-y-neutral-100",
border_y_neutral_200: "border-y-neutral-200",
border_y_neutral_300: "border-y-neutral-300",
border_y_neutral_400: "border-y-neutral-400",
border_y_neutral_50: "border-y-neutral-50",
border_y_neutral_500: "border-y-neutral-500",
border_y_neutral_600: "border-y-neutral-600",
border_y_neutral_700: "border-y-neutral-700",
border_y_neutral_800: "border-y-neutral-800",
border_y_neutral_900: "border-y-neutral-900",
border_y_orange_100: "border-y-orange-100",
border_y_orange_200: "border-y-orange-200",
border_y_orange_300: "border-y-orange-300",
border_y_orange_400: "border-y-orange-400",
border_y_orange_50: "border-y-orange-50",
border_y_orange_500: "border-y-orange-500",
border_y_orange_600: "border-y-orange-600",
border_y_orange_700: "border-y-orange-700",
border_y_orange_800: "border-y-orange-800",
border_y_orange_900: "border-y-orange-900",
border_y_pink_100: "border-y-pink-100",
border_y_pink_200: "border-y-pink-200",
border_y_pink_300: "border-y-pink-300",
border_y_pink_400: "border-y-pink-400",
border_y_pink_50: "border-y-pink-50",
border_y_pink_500: "border-y-pink-500",
border_y_pink_600: "border-y-pink-600",
border_y_pink_700: "border-y-pink-700",
border_y_pink_800: "border-y-pink-800",
border_y_pink_900: "border-y-pink-900",
border_y_purple_100: "border-y-purple-100",
border_y_purple_200: "border-y-purple-200",
border_y_purple_300: "border-y-purple-300",
border_y_purple_400: "border-y-purple-400",
border_y_purple_50: "border-y-purple-50",
border_y_purple_500: "border-y-purple-500",
border_y_purple_600: "border-y-purple-600",
border_y_purple_700: "border-y-purple-700",
border_y_purple_800: "border-y-purple-800",
border_y_purple_900: "border-y-purple-900",
border_y_red_100: "border-y-red-100",
border_y_red_200: "border-y-red-200",
border_y_red_300: "border-y-red-300",
border_y_red_400: "border-y-red-400",
border_y_red_50: "border-y-red-50",
border_y_red_500: "border-y-red-500",
border_y_red_600: "border-y-red-600",
border_y_red_700: "border-y-red-700",
border_y_red_800: "border-y-red-800",
border_y_red_900: "border-y-red-900",
border_y_rose_100: "border-y-rose-100",
border_y_rose_200: "border-y-rose-200",
border_y_rose_300: "border-y-rose-300",
border_y_rose_400: "border-y-rose-400",
border_y_rose_50: "border-y-rose-50",
border_y_rose_500: "border-y-rose-500",
border_y_rose_600: "border-y-rose-600",
border_y_rose_700: "border-y-rose-700",
border_y_rose_800: "border-y-rose-800",
border_y_rose_900: "border-y-rose-900",
border_y_sky_100: "border-y-sky-100",
border_y_sky_200: "border-y-sky-200",
border_y_sky_300: "border-y-sky-300",
border_y_sky_400: "border-y-sky-400",
border_y_sky_50: "border-y-sky-50",
border_y_sky_500: "border-y-sky-500",
border_y_sky_600: "border-y-sky-600",
border_y_sky_700: "border-y-sky-700",
border_y_sky_800: "border-y-sky-800",
border_y_sky_900: "border-y-sky-900",
border_y_slate_100: "border-y-slate-100",
border_y_slate_200: "border-y-slate-200",
border_y_slate_300: "border-y-slate-300",
border_y_slate_400: "border-y-slate-400",
border_y_slate_50: "border-y-slate-50",
border_y_slate_500: "border-y-slate-500",
border_y_slate_600: "border-y-slate-600",
border_y_slate_700: "border-y-slate-700",
border_y_slate_800: "border-y-slate-800",
border_y_slate_900: "border-y-slate-900",
border_y_stone_100: "border-y-stone-100",
border_y_stone_200: "border-y-stone-200",
border_y_stone_300: "border-y-stone-300",
border_y_stone_400: "border-y-stone-400",
border_y_stone_50: "border-y-stone-50",
border_y_stone_500: "border-y-stone-500",
border_y_stone_600: "border-y-stone-600",
border_y_stone_700: "border-y-stone-700",
border_y_stone_800: "border-y-stone-800",
border_y_stone_900: "border-y-stone-900",
border_y_teal_100: "border-y-teal-100",
border_y_teal_200: "border-y-teal-200",
border_y_teal_300: "border-y-teal-300",
border_y_teal_400: "border-y-teal-400",
border_y_teal_50: "border-y-teal-50",
border_y_teal_500: "border-y-teal-500",
border_y_teal_600: "border-y-teal-600",
border_y_teal_700: "border-y-teal-700",
border_y_teal_800: "border-y-teal-800",
border_y_teal_900: "border-y-teal-900",
border_y_transparent: "border-y-transparent",
border_y_violet_100: "border-y-violet-100",
border_y_violet_200: "border-y-violet-200",
border_y_violet_300: "border-y-violet-300",
border_y_violet_400: "border-y-violet-400",
border_y_violet_50: "border-y-violet-50",
border_y_violet_500: "border-y-violet-500",
border_y_violet_600: "border-y-violet-600",
border_y_violet_700: "border-y-violet-700",
border_y_violet_800: "border-y-violet-800",
border_y_violet_900: "border-y-violet-900",
border_y_white: "border-y-white",
border_y_yellow_100: "border-y-yellow-100",
border_y_yellow_200: "border-y-yellow-200",
border_y_yellow_300: "border-y-yellow-300",
border_y_yellow_400: "border-y-yellow-400",
border_y_yellow_50: "border-y-yellow-50",
border_y_yellow_500: "border-y-yellow-500",
border_y_yellow_600: "border-y-yellow-600",
border_y_yellow_700: "border-y-yellow-700",
border_y_yellow_800: "border-y-yellow-800",
border_y_yellow_900: "border-y-yellow-900",
border_y_zinc_100: "border-y-zinc-100",
border_y_zinc_200: "border-y-zinc-200",
border_y_zinc_300: "border-y-zinc-300",
border_y_zinc_400: "border-y-zinc-400",
border_y_zinc_50: "border-y-zinc-50",
border_y_zinc_500: "border-y-zinc-500",
border_y_zinc_600: "border-y-zinc-600",
border_y_zinc_700: "border-y-zinc-700",
border_y_zinc_800: "border-y-zinc-800",
border_y_zinc_900: "border-y-zinc-900",
border_yellow_100: "border-yellow-100",
border_yellow_200: "border-yellow-200",
border_yellow_300: "border-yellow-300",
border_yellow_400: "border-yellow-400",
border_yellow_50: "border-yellow-50",
border_yellow_500: "border-yellow-500",
border_yellow_600: "border-yellow-600",
border_yellow_700: "border-yellow-700",
border_yellow_800: "border-yellow-800",
border_yellow_900: "border-yellow-900",
border_zinc_100: "border-zinc-100",
border_zinc_200: "border-zinc-200",
border_zinc_300: "border-zinc-300",
border_zinc_400: "border-zinc-400",
border_zinc_50: "border-zinc-50",
border_zinc_500: "border-zinc-500",
border_zinc_600: "border-zinc-600",
border_zinc_700: "border-zinc-700",
border_zinc_800: "border-zinc-800",
border_zinc_900: "border-zinc-900",
outline: "outline",
outline_0: "outline-0",
outline_1: "outline-1",
outline_2: "outline-2",
outline_4: "outline-4",
outline_8: "outline-8",
outline_amber_100: "outline-amber-100",
outline_amber_200: "outline-amber-200",
outline_amber_300: "outline-amber-300",
outline_amber_400: "outline-amber-400",
outline_amber_50: "outline-amber-50",
outline_amber_500: "outline-amber-500",
outline_amber_600: "outline-amber-600",
outline_amber_700: "outline-amber-700",
outline_amber_800: "outline-amber-800",
outline_amber_900: "outline-amber-900",
outline_black: "outline-black",
outline_blue_100: "outline-blue-100",
outline_blue_200: "outline-blue-200",
outline_blue_300: "outline-blue-300",
outline_blue_400: "outline-blue-400",
outline_blue_50: "outline-blue-50",
outline_blue_500: "outline-blue-500",
outline_blue_600: "outline-blue-600",
outline_blue_700: "outline-blue-700",
outline_blue_800: "outline-blue-800",
outline_blue_900: "outline-blue-900",
outline_current: "outline-current",
outline_cyan_100: "outline-cyan-100",
outline_cyan_200: "outline-cyan-200",
outline_cyan_300: "outline-cyan-300",
outline_cyan_400: "outline-cyan-400",
outline_cyan_50: "outline-cyan-50",
outline_cyan_500: "outline-cyan-500",
outline_cyan_600: "outline-cyan-600",
outline_cyan_700: "outline-cyan-700",
outline_cyan_800: "outline-cyan-800",
outline_cyan_900: "outline-cyan-900",
outline_dashed: "outline-dashed",
outline_dotted: "outline-dotted",
outline_double: "outline-double",
outline_emerald_100: "outline-emerald-100",
outline_emerald_200: "outline-emerald-200",
outline_emerald_300: "outline-emerald-300",
outline_emerald_400: "outline-emerald-400",
outline_emerald_50: "outline-emerald-50",
outline_emerald_500: "outline-emerald-500",
outline_emerald_600: "outline-emerald-600",
outline_emerald_700: "outline-emerald-700",
outline_emerald_800: "outline-emerald-800",
outline_emerald_900: "outline-emerald-900",
outline_fuchsia_100: "outline-fuchsia-100",
outline_fuchsia_200: "outline-fuchsia-200",
outline_fuchsia_300: "outline-fuchsia-300",
outline_fuchsia_400: "outline-fuchsia-400",
outline_fuchsia_50: "outline-fuchsia-50",
outline_fuchsia_500: "outline-fuchsia-500",
outline_fuchsia_600: "outline-fuchsia-600",
outline_fuchsia_700: "outline-fuchsia-700",
outline_fuchsia_800: "outline-fuchsia-800",
outline_fuchsia_900: "outline-fuchsia-900",
outline_gray_100: "outline-gray-100",
outline_gray_200: "outline-gray-200",
outline_gray_300: "outline-gray-300",
outline_gray_400: "outline-gray-400",
outline_gray_50: "outline-gray-50",
outline_gray_500: "outline-gray-500",
outline_gray_600: "outline-gray-600",
outline_gray_700: "outline-gray-700",
outline_gray_800: "outline-gray-800",
outline_gray_900: "outline-gray-900",
outline_green_100: "outline-green-100",
outline_green_200: "outline-green-200",
outline_green_300: "outline-green-300",
outline_green_400: "outline-green-400",
outline_green_50: "outline-green-50",
outline_green_500: "outline-green-500",
outline_green_600: "outline-green-600",
outline_green_700: "outline-green-700",
outline_green_800: "outline-green-800",
outline_green_900: "outline-green-900",
outline_hidden: "outline-hidden",
outline_indigo_100: "outline-indigo-100",
outline_indigo_200: "outline-indigo-200",
outline_indigo_300: "outline-indigo-300",
outline_indigo_400: "outline-indigo-400",
outline_indigo_50: "outline-indigo-50",
outline_indigo_500: "outline-indigo-500",
outline_indigo_600: "outline-indigo-600",
outline_indigo_700: "outline-indigo-700",
outline_indigo_800: "outline-indigo-800",
outline_indigo_900: "outline-indigo-900",
outline_inherit: "outline-inherit",
outline_lime_100: "outline-lime-100",
outline_lime_200: "outline-lime-200",
outline_lime_300: "outline-lime-300",
outline_lime_400: "outline-lime-400",
outline_lime_50: "outline-lime-50",
outline_lime_500: "outline-lime-500",
outline_lime_600: "outline-lime-600",
outline_lime_700: "outline-lime-700",
outline_lime_800: "outline-lime-800",
outline_lime_900: "outline-lime-900",
outline_neutral_100: "outline-neutral-100",
outline_neutral_200: "outline-neutral-200",
outline_neutral_300: "outline-neutral-300",
outline_neutral_400: "outline-neutral-400",
outline_neutral_50: "outline-neutral-50",
outline_neutral_500: "outline-neutral-500",
outline_neutral_600: "outline-neutral-600",
outline_neutral_700: "outline-neutral-700",
outline_neutral_800: "outline-neutral-800",
outline_neutral_900: "outline-neutral-900",
outline_none: "outline-none",
outline_offset_0: "outline-offset-0",
outline_offset_1: "outline-offset-1",
outline_offset_2: "outline-offset-2",
outline_offset_4: "outline-offset-4",
outline_offset_8: "outline-offset-8",
outline_orange_100: "outline-orange-100",
outline_orange_200: "outline-orange-200",
outline_orange_300: "outline-orange-300",
outline_orange_400: "outline-orange-400",
outline_orange_50: "outline-orange-50",
outline_orange_500: "outline-orange-500",
outline_orange_600: "outline-orange-600",
outline_orange_700: "outline-orange-700",
outline_orange_800: "outline-orange-800",
outline_orange_900: "outline-orange-900",
outline_pink_100: "outline-pink-100",
outline_pink_200: "outline-pink-200",
outline_pink_300: "outline-pink-300",
outline_pink_400: "outline-pink-400",
outline_pink_50: "outline-pink-50",
outline_pink_500: "outline-pink-500",
outline_pink_600: "outline-pink-600",
outline_pink_700: "outline-pink-700",
outline_pink_800: "outline-pink-800",
outline_pink_900: "outline-pink-900",
outline_purple_100: "outline-purple-100",
outline_purple_200: "outline-purple-200",
outline_purple_300: "outline-purple-300",
outline_purple_400: "outline-purple-400",
outline_purple_50: "outline-purple-50",
outline_purple_500: "outline-purple-500",
outline_purple_600: "outline-purple-600",
outline_purple_700: "outline-purple-700",
outline_purple_800: "outline-purple-800",
outline_purple_900: "outline-purple-900",
outline_red_100: "outline-red-100",
outline_red_200: "outline-red-200",
outline_red_300: "outline-red-300",
outline_red_400: "outline-red-400",
outline_red_50: "outline-red-50",
outline_red_500: "outline-red-500",
outline_red_600: "outline-red-600",
outline_red_700: "outline-red-700",
outline_red_800: "outline-red-800",
outline_red_900: "outline-red-900",
outline_rose_100: "outline-rose-100",
outline_rose_200: "outline-rose-200",
outline_rose_300: "outline-rose-300",
outline_rose_400: "outline-rose-400",
outline_rose_50: "outline-rose-50",
outline_rose_500: "outline-rose-500",
outline_rose_600: "outline-rose-600",
outline_rose_700: "outline-rose-700",
outline_rose_800: "outline-rose-800",
outline_rose_900: "outline-rose-900",
outline_sky_100: "outline-sky-100",
outline_sky_200: "outline-sky-200",
outline_sky_300: "outline-sky-300",
outline_sky_400: "outline-sky-400",
outline_sky_50: "outline-sky-50",
outline_sky_500: "outline-sky-500",
outline_sky_600: "outline-sky-600",
outline_sky_700: "outline-sky-700",
outline_sky_800: "outline-sky-800",
outline_sky_900: "outline-sky-900",
outline_slate_100: "outline-slate-100",
outline_slate_200: "outline-slate-200",
outline_slate_300: "outline-slate-300",
outline_slate_400: "outline-slate-400",
outline_slate_50: "outline-slate-50",
outline_slate_500: "outline-slate-500",
outline_slate_600: "outline-slate-600",
outline_slate_700: "outline-slate-700",
outline_slate_800: "outline-slate-800",
outline_slate_900: "outline-slate-900",
outline_stone_100: "outline-stone-100",
outline_stone_200: "outline-stone-200",
outline_stone_300: "outline-stone-300",
outline_stone_400: "outline-stone-400",
outline_stone_50: "outline-stone-50",
outline_stone_500: "outline-stone-500",
outline_stone_600: "outline-stone-600",
outline_stone_700: "outline-stone-700",
outline_stone_800: "outline-stone-800",
outline_stone_900: "outline-stone-900",
outline_teal_100: "outline-teal-100",
outline_teal_200: "outline-teal-200",
outline_teal_300: "outline-teal-300",
outline_teal_400: "outline-teal-400",
outline_teal_50: "outline-teal-50",
outline_teal_500: "outline-teal-500",
outline_teal_600: "outline-teal-600",
outline_teal_700: "outline-teal-700",
outline_teal_800: "outline-teal-800",
outline_teal_900: "outline-teal-900",
outline_transparent: "outline-transparent",
outline_violet_100: "outline-violet-100",
outline_violet_200: "outline-violet-200",
outline_violet_300: "outline-violet-300",
outline_violet_400: "outline-violet-400",
outline_violet_50: "outline-violet-50",
outline_violet_500: "outline-violet-500",
outline_violet_600: "outline-violet-600",
outline_violet_700: "outline-violet-700",
outline_violet_800: "outline-violet-800",
outline_violet_900: "outline-violet-900",
outline_white: "outline-white",
outline_yellow_100: "outline-yellow-100",
outline_yellow_200: "outline-yellow-200",
outline_yellow_300: "outline-yellow-300",
outline_yellow_400: "outline-yellow-400",
outline_yellow_50: "outline-yellow-50",
outline_yellow_500: "outline-yellow-500",
outline_yellow_600: "outline-yellow-600",
outline_yellow_700: "outline-yellow-700",
outline_yellow_800: "outline-yellow-800",
outline_yellow_900: "outline-yellow-900",
outline_zinc_100: "outline-zinc-100",
outline_zinc_200: "outline-zinc-200",
outline_zinc_300: "outline-zinc-300",
outline_zinc_400: "outline-zinc-400",
outline_zinc_50: "outline-zinc-50",
outline_zinc_500: "outline-zinc-500",
outline_zinc_600: "outline-zinc-600",
outline_zinc_700: "outline-zinc-700",
outline_zinc_800: "outline-zinc-800",
outline_zinc_900: "outline-zinc-900",
ring: "ring",
ring_0: "ring-0",
ring_1: "ring-1",
ring_2: "ring-2",
ring_4: "ring-4",
ring_8: "ring-8",
ring_amber_100: "ring-amber-100",
ring_amber_200: "ring-amber-200",
ring_amber_300: "ring-amber-300",
ring_amber_400: "ring-amber-400",
ring_amber_50: "ring-amber-50",
ring_amber_500: "ring-amber-500",
ring_amber_600: "ring-amber-600",
ring_amber_700: "ring-amber-700",
ring_amber_800: "ring-amber-800",
ring_amber_900: "ring-amber-900",
ring_black: "ring-black",
ring_blue_100: "ring-blue-100",
ring_blue_200: "ring-blue-200",
ring_blue_300: "ring-blue-300",
ring_blue_400: "ring-blue-400",
ring_blue_50: "ring-blue-50",
ring_blue_500: "ring-blue-500",
ring_blue_600: "ring-blue-600",
ring_blue_700: "ring-blue-700",
ring_blue_800: "ring-blue-800",
ring_blue_900: "ring-blue-900",
ring_current: "ring-current",
ring_cyan_100: "ring-cyan-100",
ring_cyan_200: "ring-cyan-200",
ring_cyan_300: "ring-cyan-300",
ring_cyan_400: "ring-cyan-400",
ring_cyan_50: "ring-cyan-50",
ring_cyan_500: "ring-cyan-500",
ring_cyan_600: "ring-cyan-600",
ring_cyan_700: "ring-cyan-700",
ring_cyan_800: "ring-cyan-800",
ring_cyan_900: "ring-cyan-900",
ring_emerald_100: "ring-emerald-100",
ring_emerald_200: "ring-emerald-200",
ring_emerald_300: "ring-emerald-300",
ring_emerald_400: "ring-emerald-400",
ring_emerald_50: "ring-emerald-50",
ring_emerald_500: "ring-emerald-500",
ring_emerald_600: "ring-emerald-600",
ring_emerald_700: "ring-emerald-700",
ring_emerald_800: "ring-emerald-800",
ring_emerald_900: "ring-emerald-900",
ring_fuchsia_100: "ring-fuchsia-100",
ring_fuchsia_200: "ring-fuchsia-200",
ring_fuchsia_300: "ring-fuchsia-300",
ring_fuchsia_400: "ring-fuchsia-400",
ring_fuchsia_50: "ring-fuchsia-50",
ring_fuchsia_500: "ring-fuchsia-500",
ring_fuchsia_600: "ring-fuchsia-600",
ring_fuchsia_700: "ring-fuchsia-700",
ring_fuchsia_800: "ring-fuchsia-800",
ring_fuchsia_900: "ring-fuchsia-900",
ring_gray_100: "ring-gray-100",
ring_gray_200: "ring-gray-200",
ring_gray_300: "ring-gray-300",
ring_gray_400: "ring-gray-400",
ring_gray_50: "ring-gray-50",
ring_gray_500: "ring-gray-500",
ring_gray_600: "ring-gray-600",
ring_gray_700: "ring-gray-700",
ring_gray_800: "ring-gray-800",
ring_gray_900: "ring-gray-900",
ring_green_100: "ring-green-100",
ring_green_200: "ring-green-200",
ring_green_300: "ring-green-300",
ring_green_400: "ring-green-400",
ring_green_50: "ring-green-50",
ring_green_500: "ring-green-500",
ring_green_600: "ring-green-600",
ring_green_700: "ring-green-700",
ring_green_800: "ring-green-800",
ring_green_900: "ring-green-900",
ring_indigo_100: "ring-indigo-100",
ring_indigo_200: "ring-indigo-200",
ring_indigo_300: "ring-indigo-300",
ring_indigo_400: "ring-indigo-400",
ring_indigo_50: "ring-indigo-50",
ring_indigo_500: "ring-indigo-500",
ring_indigo_600: "ring-indigo-600",
ring_indigo_700: "ring-indigo-700",
ring_indigo_800: "ring-indigo-800",
ring_indigo_900: "ring-indigo-900",
ring_inherit: "ring-inherit",
ring_inset: "ring-inset",
ring_lime_100: "ring-lime-100",
ring_lime_200: "ring-lime-200",
ring_lime_300: "ring-lime-300",
ring_lime_400: "ring-lime-400",
ring_lime_50: "ring-lime-50",
ring_lime_500: "ring-lime-500",
ring_lime_600: "ring-lime-600",
ring_lime_700: "ring-lime-700",
ring_lime_800: "ring-lime-800",
ring_lime_900: "ring-lime-900",
ring_neutral_100: "ring-neutral-100",
ring_neutral_200: "ring-neutral-200",
ring_neutral_300: "ring-neutral-300",
ring_neutral_400: "ring-neutral-400",
ring_neutral_50: "ring-neutral-50",
ring_neutral_500: "ring-neutral-500",
ring_neutral_600: "ring-neutral-600",
ring_neutral_700: "ring-neutral-700",
ring_neutral_800: "ring-neutral-800",
ring_neutral_900: "ring-neutral-900",
ring_offset_0: "ring-offset-0",
ring_offset_1: "ring-offset-1",
ring_offset_2: "ring-offset-2",
ring_offset_4: "ring-offset-4",
ring_offset_8: "ring-offset-8",
ring_offset_amber_100: "ring-offset-amber-100",
ring_offset_amber_200: "ring-offset-amber-200",
ring_offset_amber_300: "ring-offset-amber-300",
ring_offset_amber_400: "ring-offset-amber-400",
ring_offset_amber_50: "ring-offset-amber-50",
ring_offset_amber_500: "ring-offset-amber-500",
ring_offset_amber_600: "ring-offset-amber-600",
ring_offset_amber_700: "ring-offset-amber-700",
ring_offset_amber_800: "ring-offset-amber-800",
ring_offset_amber_900: "ring-offset-amber-900",
ring_offset_black: "ring-offset-black",
ring_offset_blue_100: "ring-offset-blue-100",
ring_offset_blue_200: "ring-offset-blue-200",
ring_offset_blue_300: "ring-offset-blue-300",
ring_offset_blue_400: "ring-offset-blue-400",
ring_offset_blue_50: "ring-offset-blue-50",
ring_offset_blue_500: "ring-offset-blue-500",
ring_offset_blue_600: "ring-offset-blue-600",
ring_offset_blue_700: "ring-offset-blue-700",
ring_offset_blue_800: "ring-offset-blue-800",
ring_offset_blue_900: "ring-offset-blue-900",
ring_offset_current: "ring-offset-current",
ring_offset_cyan_100: "ring-offset-cyan-100",
ring_offset_cyan_200: "ring-offset-cyan-200",
ring_offset_cyan_300: "ring-offset-cyan-300",
ring_offset_cyan_400: "ring-offset-cyan-400",
ring_offset_cyan_50: "ring-offset-cyan-50",
ring_offset_cyan_500: "ring-offset-cyan-500",
ring_offset_cyan_600: "ring-offset-cyan-600",
ring_offset_cyan_700: "ring-offset-cyan-700",
ring_offset_cyan_800: "ring-offset-cyan-800",
ring_offset_cyan_900: "ring-offset-cyan-900",
ring_offset_emerald_100: "ring-offset-emerald-100",
ring_offset_emerald_200: "ring-offset-emerald-200",
ring_offset_emerald_300: "ring-offset-emerald-300",
ring_offset_emerald_400: "ring-offset-emerald-400",
ring_offset_emerald_50: "ring-offset-emerald-50",
ring_offset_emerald_500: "ring-offset-emerald-500",
ring_offset_emerald_600: "ring-offset-emerald-600",
ring_offset_emerald_700: "ring-offset-emerald-700",
ring_offset_emerald_800: "ring-offset-emerald-800",
ring_offset_emerald_900: "ring-offset-emerald-900",
ring_offset_fuchsia_100: "ring-offset-fuchsia-100",
ring_offset_fuchsia_200: "ring-offset-fuchsia-200",
ring_offset_fuchsia_300: "ring-offset-fuchsia-300",
ring_offset_fuchsia_400: "ring-offset-fuchsia-400",
ring_offset_fuchsia_50: "ring-offset-fuchsia-50",
ring_offset_fuchsia_500: "ring-offset-fuchsia-500",
ring_offset_fuchsia_600: "ring-offset-fuchsia-600",
ring_offset_fuchsia_700: "ring-offset-fuchsia-700",
ring_offset_fuchsia_800: "ring-offset-fuchsia-800",
ring_offset_fuchsia_900: "ring-offset-fuchsia-900",
ring_offset_gray_100: "ring-offset-gray-100",
ring_offset_gray_200: "ring-offset-gray-200",
ring_offset_gray_300: "ring-offset-gray-300",
ring_offset_gray_400: "ring-offset-gray-400",
ring_offset_gray_50: "ring-offset-gray-50",
ring_offset_gray_500: "ring-offset-gray-500",
ring_offset_gray_600: "ring-offset-gray-600",
ring_offset_gray_700: "ring-offset-gray-700",
ring_offset_gray_800: "ring-offset-gray-800",
ring_offset_gray_900: "ring-offset-gray-900",
ring_offset_green_100: "ring-offset-green-100",
ring_offset_green_200: "ring-offset-green-200",
ring_offset_green_300: "ring-offset-green-300",
ring_offset_green_400: "ring-offset-green-400",
ring_offset_green_50: "ring-offset-green-50",
ring_offset_green_500: "ring-offset-green-500",
ring_offset_green_600: "ring-offset-green-600",
ring_offset_green_700: "ring-offset-green-700",
ring_offset_green_800: "ring-offset-green-800",
ring_offset_green_900: "ring-offset-green-900",
ring_offset_indigo_100: "ring-offset-indigo-100",
ring_offset_indigo_200: "ring-offset-indigo-200",
ring_offset_indigo_300: "ring-offset-indigo-300",
ring_offset_indigo_400: "ring-offset-indigo-400",
ring_offset_indigo_50: "ring-offset-indigo-50",
ring_offset_indigo_500: "ring-offset-indigo-500",
ring_offset_indigo_600: "ring-offset-indigo-600",
ring_offset_indigo_700: "ring-offset-indigo-700",
ring_offset_indigo_800: "ring-offset-indigo-800",
ring_offset_indigo_900: "ring-offset-indigo-900",
ring_offset_inherit: "ring-offset-inherit",
ring_offset_lime_100: "ring-offset-lime-100",
ring_offset_lime_200: "ring-offset-lime-200",
ring_offset_lime_300: "ring-offset-lime-300",
ring_offset_lime_400: "ring-offset-lime-400",
ring_offset_lime_50: "ring-offset-lime-50",
ring_offset_lime_500: "ring-offset-lime-500",
ring_offset_lime_600: "ring-offset-lime-600",
ring_offset_lime_700: "ring-offset-lime-700",
ring_offset_lime_800: "ring-offset-lime-800",
ring_offset_lime_900: "ring-offset-lime-900",
ring_offset_neutral_100: "ring-offset-neutral-100",
ring_offset_neutral_200: "ring-offset-neutral-200",
ring_offset_neutral_300: "ring-offset-neutral-300",
ring_offset_neutral_400: "ring-offset-neutral-400",
ring_offset_neutral_50: "ring-offset-neutral-50",
ring_offset_neutral_500: "ring-offset-neutral-500",
ring_offset_neutral_600: "ring-offset-neutral-600",
ring_offset_neutral_700: "ring-offset-neutral-700",
ring_offset_neutral_800: "ring-offset-neutral-800",
ring_offset_neutral_900: "ring-offset-neutral-900",
ring_offset_orange_100: "ring-offset-orange-100",
ring_offset_orange_200: "ring-offset-orange-200",
ring_offset_orange_300: "ring-offset-orange-300",
ring_offset_orange_400: "ring-offset-orange-400",
ring_offset_orange_50: "ring-offset-orange-50",
ring_offset_orange_500: "ring-offset-orange-500",
ring_offset_orange_600: "ring-offset-orange-600",
ring_offset_orange_700: "ring-offset-orange-700",
ring_offset_orange_800: "ring-offset-orange-800",
ring_offset_orange_900: "ring-offset-orange-900",
ring_offset_pink_100: "ring-offset-pink-100",
ring_offset_pink_200: "ring-offset-pink-200",
ring_offset_pink_300: "ring-offset-pink-300",
ring_offset_pink_400: "ring-offset-pink-400",
ring_offset_pink_50: "ring-offset-pink-50",
ring_offset_pink_500: "ring-offset-pink-500",
ring_offset_pink_600: "ring-offset-pink-600",
ring_offset_pink_700: "ring-offset-pink-700",
ring_offset_pink_800: "ring-offset-pink-800",
ring_offset_pink_900: "ring-offset-pink-900",
ring_offset_purple_100: "ring-offset-purple-100",
ring_offset_purple_200: "ring-offset-purple-200",
ring_offset_purple_300: "ring-offset-purple-300",
ring_offset_purple_400: "ring-offset-purple-400",
ring_offset_purple_50: "ring-offset-purple-50",
ring_offset_purple_500: "ring-offset-purple-500",
ring_offset_purple_600: "ring-offset-purple-600",
ring_offset_purple_700: "ring-offset-purple-700",
ring_offset_purple_800: "ring-offset-purple-800",
ring_offset_purple_900: "ring-offset-purple-900",
ring_offset_red_100: "ring-offset-red-100",
ring_offset_red_200: "ring-offset-red-200",
ring_offset_red_300: "ring-offset-red-300",
ring_offset_red_400: "ring-offset-red-400",
ring_offset_red_50: "ring-offset-red-50",
ring_offset_red_500: "ring-offset-red-500",
ring_offset_red_600: "ring-offset-red-600",
ring_offset_red_700: "ring-offset-red-700",
ring_offset_red_800: "ring-offset-red-800",
ring_offset_red_900: "ring-offset-red-900",
ring_offset_rose_100: "ring-offset-rose-100",
ring_offset_rose_200: "ring-offset-rose-200",
ring_offset_rose_300: "ring-offset-rose-300",
ring_offset_rose_400: "ring-offset-rose-400",
ring_offset_rose_50: "ring-offset-rose-50",
ring_offset_rose_500: "ring-offset-rose-500",
ring_offset_rose_600: "ring-offset-rose-600",
ring_offset_rose_700: "ring-offset-rose-700",
ring_offset_rose_800: "ring-offset-rose-800",
ring_offset_rose_900: "ring-offset-rose-900",
ring_offset_sky_100: "ring-offset-sky-100",
ring_offset_sky_200: "ring-offset-sky-200",
ring_offset_sky_300: "ring-offset-sky-300",
ring_offset_sky_400: "ring-offset-sky-400",
ring_offset_sky_50: "ring-offset-sky-50",
ring_offset_sky_500: "ring-offset-sky-500",
ring_offset_sky_600: "ring-offset-sky-600",
ring_offset_sky_700: "ring-offset-sky-700",
ring_offset_sky_800: "ring-offset-sky-800",
ring_offset_sky_900: "ring-offset-sky-900",
ring_offset_slate_100: "ring-offset-slate-100",
ring_offset_slate_200: "ring-offset-slate-200",
ring_offset_slate_300: "ring-offset-slate-300",
ring_offset_slate_400: "ring-offset-slate-400",
ring_offset_slate_50: "ring-offset-slate-50",
ring_offset_slate_500: "ring-offset-slate-500",
ring_offset_slate_600: "ring-offset-slate-600",
ring_offset_slate_700: "ring-offset-slate-700",
ring_offset_slate_800: "ring-offset-slate-800",
ring_offset_slate_900: "ring-offset-slate-900",
ring_offset_stone_100: "ring-offset-stone-100",
ring_offset_stone_200: "ring-offset-stone-200",
ring_offset_stone_300: "ring-offset-stone-300",
ring_offset_stone_400: "ring-offset-stone-400",
ring_offset_stone_50: "ring-offset-stone-50",
ring_offset_stone_500: "ring-offset-stone-500",
ring_offset_stone_600: "ring-offset-stone-600",
ring_offset_stone_700: "ring-offset-stone-700",
ring_offset_stone_800: "ring-offset-stone-800",
ring_offset_stone_900: "ring-offset-stone-900",
ring_offset_teal_100: "ring-offset-teal-100",
ring_offset_teal_200: "ring-offset-teal-200",
ring_offset_teal_300: "ring-offset-teal-300",
ring_offset_teal_400: "ring-offset-teal-400",
ring_offset_teal_50: "ring-offset-teal-50",
ring_offset_teal_500: "ring-offset-teal-500",
ring_offset_teal_600: "ring-offset-teal-600",
ring_offset_teal_700: "ring-offset-teal-700",
ring_offset_teal_800: "ring-offset-teal-800",
ring_offset_teal_900: "ring-offset-teal-900",
ring_offset_transparent: "ring-offset-transparent",
ring_offset_violet_100: "ring-offset-violet-100",
ring_offset_violet_200: "ring-offset-violet-200",
ring_offset_violet_300: "ring-offset-violet-300",
ring_offset_violet_400: "ring-offset-violet-400",
ring_offset_violet_50: "ring-offset-violet-50",
ring_offset_violet_500: "ring-offset-violet-500",
ring_offset_violet_600: "ring-offset-violet-600",
ring_offset_violet_700: "ring-offset-violet-700",
ring_offset_violet_800: "ring-offset-violet-800",
ring_offset_violet_900: "ring-offset-violet-900",
ring_offset_white: "ring-offset-white",
ring_offset_yellow_100: "ring-offset-yellow-100",
ring_offset_yellow_200: "ring-offset-yellow-200",
ring_offset_yellow_300: "ring-offset-yellow-300",
ring_offset_yellow_400: "ring-offset-yellow-400",
ring_offset_yellow_50: "ring-offset-yellow-50",
ring_offset_yellow_500: "ring-offset-yellow-500",
ring_offset_yellow_600: "ring-offset-yellow-600",
ring_offset_yellow_700: "ring-offset-yellow-700",
ring_offset_yellow_800: "ring-offset-yellow-800",
ring_offset_yellow_900: "ring-offset-yellow-900",
ring_offset_zinc_100: "ring-offset-zinc-100",
ring_offset_zinc_200: "ring-offset-zinc-200",
ring_offset_zinc_300: "ring-offset-zinc-300",
ring_offset_zinc_400: "ring-offset-zinc-400",
ring_offset_zinc_50: "ring-offset-zinc-50",
ring_offset_zinc_500: "ring-offset-zinc-500",
ring_offset_zinc_600: "ring-offset-zinc-600",
ring_offset_zinc_700: "ring-offset-zinc-700",
ring_offset_zinc_800: "ring-offset-zinc-800",
ring_offset_zinc_900: "ring-offset-zinc-900",
ring_opacity_0: "ring-opacity-0",
ring_opacity_10: "ring-opacity-10",
ring_opacity_100: "ring-opacity-100",
ring_opacity_20: "ring-opacity-20",
ring_opacity_25: "ring-opacity-25",
ring_opacity_30: "ring-opacity-30",
ring_opacity_40: "ring-opacity-40",
ring_opacity_5: "ring-opacity-5",
ring_opacity_50: "ring-opacity-50",
ring_opacity_60: "ring-opacity-60",
ring_opacity_70: "ring-opacity-70",
ring_opacity_75: "ring-opacity-75",
ring_opacity_80: "ring-opacity-80",
ring_opacity_90: "ring-opacity-90",
ring_opacity_95: "ring-opacity-95",
ring_orange_100: "ring-orange-100",
ring_orange_200: "ring-orange-200",
ring_orange_300: "ring-orange-300",
ring_orange_400: "ring-orange-400",
ring_orange_50: "ring-orange-50",
ring_orange_500: "ring-orange-500",
ring_orange_600: "ring-orange-600",
ring_orange_700: "ring-orange-700",
ring_orange_800: "ring-orange-800",
ring_orange_900: "ring-orange-900",
ring_pink_100: "ring-pink-100",
ring_pink_200: "ring-pink-200",
ring_pink_300: "ring-pink-300",
ring_pink_400: "ring-pink-400",
ring_pink_50: "ring-pink-50",
ring_pink_500: "ring-pink-500",
ring_pink_600: "ring-pink-600",
ring_pink_700: "ring-pink-700",
ring_pink_800: "ring-pink-800",
ring_pink_900: "ring-pink-900",
ring_purple_100: "ring-purple-100",
ring_purple_200: "ring-purple-200",
ring_purple_300: "ring-purple-300",
ring_purple_400: "ring-purple-400",
ring_purple_50: "ring-purple-50",
ring_purple_500: "ring-purple-500",
ring_purple_600: "ring-purple-600",
ring_purple_700: "ring-purple-700",
ring_purple_800: "ring-purple-800",
ring_purple_900: "ring-purple-900",
ring_red_100: "ring-red-100",
ring_red_200: "ring-red-200",
ring_red_300: "ring-red-300",
ring_red_400: "ring-red-400",
ring_red_50: "ring-red-50",
ring_red_500: "ring-red-500",
ring_red_600: "ring-red-600",
ring_red_700: "ring-red-700",
ring_red_800: "ring-red-800",
ring_red_900: "ring-red-900",
ring_rose_100: "ring-rose-100",
ring_rose_200: "ring-rose-200",
ring_rose_300: "ring-rose-300",
ring_rose_400: "ring-rose-400",
ring_rose_50: "ring-rose-50",
ring_rose_500: "ring-rose-500",
ring_rose_600: "ring-rose-600",
ring_rose_700: "ring-rose-700",
ring_rose_800: "ring-rose-800",
ring_rose_900: "ring-rose-900",
ring_sky_100: "ring-sky-100",
ring_sky_200: "ring-sky-200",
ring_sky_300: "ring-sky-300",
ring_sky_400: "ring-sky-400",
ring_sky_50: "ring-sky-50",
ring_sky_500: "ring-sky-500",
ring_sky_600: "ring-sky-600",
ring_sky_700: "ring-sky-700",
ring_sky_800: "ring-sky-800",
ring_sky_900: "ring-sky-900",
ring_slate_100: "ring-slate-100",
ring_slate_200: "ring-slate-200",
ring_slate_300: "ring-slate-300",
ring_slate_400: "ring-slate-400",
ring_slate_50: "ring-slate-50",
ring_slate_500: "ring-slate-500",
ring_slate_600: "ring-slate-600",
ring_slate_700: "ring-slate-700",
ring_slate_800: "ring-slate-800",
ring_slate_900: "ring-slate-900",
ring_stone_100: "ring-stone-100",
ring_stone_200: "ring-stone-200",
ring_stone_300: "ring-stone-300",
ring_stone_400: "ring-stone-400",
ring_stone_50: "ring-stone-50",
ring_stone_500: "ring-stone-500",
ring_stone_600: "ring-stone-600",
ring_stone_700: "ring-stone-700",
ring_stone_800: "ring-stone-800",
ring_stone_900: "ring-stone-900",
ring_teal_100: "ring-teal-100",
ring_teal_200: "ring-teal-200",
ring_teal_300: "ring-teal-300",
ring_teal_400: "ring-teal-400",
ring_teal_50: "ring-teal-50",
ring_teal_500: "ring-teal-500",
ring_teal_600: "ring-teal-600",
ring_teal_700: "ring-teal-700",
ring_teal_800: "ring-teal-800",
ring_teal_900: "ring-teal-900",
ring_transparent: "ring-transparent",
ring_violet_100: "ring-violet-100",
ring_violet_200: "ring-violet-200",
ring_violet_300: "ring-violet-300",
ring_violet_400: "ring-violet-400",
ring_violet_50: "ring-violet-50",
ring_violet_500: "ring-violet-500",
ring_violet_600: "ring-violet-600",
ring_violet_700: "ring-violet-700",
ring_violet_800: "ring-violet-800",
ring_violet_900: "ring-violet-900",
ring_white: "ring-white",
ring_yellow_100: "ring-yellow-100",
ring_yellow_200: "ring-yellow-200",
ring_yellow_300: "ring-yellow-300",
ring_yellow_400: "ring-yellow-400",
ring_yellow_50: "ring-yellow-50",
ring_yellow_500: "ring-yellow-500",
ring_yellow_600: "ring-yellow-600",
ring_yellow_700: "ring-yellow-700",
ring_yellow_800: "ring-yellow-800",
ring_yellow_900: "ring-yellow-900",
ring_zinc_100: "ring-zinc-100",
ring_zinc_200: "ring-zinc-200",
ring_zinc_300: "ring-zinc-300",
ring_zinc_400: "ring-zinc-400",
ring_zinc_50: "ring-zinc-50",
ring_zinc_500: "ring-zinc-500",
ring_zinc_600: "ring-zinc-600",
ring_zinc_700: "ring-zinc-700",
ring_zinc_800: "ring-zinc-800",
ring_zinc_900: "ring-zinc-900",
rounded: "rounded",
rounded_2xl: "rounded-2xl",
rounded_3xl: "rounded-3xl",
rounded_b: "rounded-b",
rounded_b_2xl: "rounded-b-2xl",
rounded_b_3xl: "rounded-b-3xl",
rounded_b_full: "rounded-b-full",
rounded_b_lg: "rounded-b-lg",
rounded_b_md: "rounded-b-md",
rounded_b_none: "rounded-b-none",
rounded_b_sm: "rounded-b-sm",
rounded_b_xl: "rounded-b-xl",
rounded_bl: "rounded-bl",
rounded_bl_2xl: "rounded-bl-2xl",
rounded_bl_3xl: "rounded-bl-3xl",
rounded_bl_full: "rounded-bl-full",
rounded_bl_lg: "rounded-bl-lg",
rounded_bl_md: "rounded-bl-md",
rounded_bl_none: "rounded-bl-none",
rounded_bl_sm: "rounded-bl-sm",
rounded_bl_xl: "rounded-bl-xl",
rounded_br: "rounded-br",
rounded_br_2xl: "rounded-br-2xl",
rounded_br_3xl: "rounded-br-3xl",
rounded_br_full: "rounded-br-full",
rounded_br_lg: "rounded-br-lg",
rounded_br_md: "rounded-br-md",
rounded_br_none: "rounded-br-none",
rounded_br_sm: "rounded-br-sm",
rounded_br_xl: "rounded-br-xl",
rounded_full: "rounded-full",
rounded_l: "rounded-l",
rounded_l_2xl: "rounded-l-2xl",
rounded_l_3xl: "rounded-l-3xl",
rounded_l_full: "rounded-l-full",
rounded_l_lg: "rounded-l-lg",
rounded_l_md: "rounded-l-md",
rounded_l_none: "rounded-l-none",
rounded_l_sm: "rounded-l-sm",
rounded_l_xl: "rounded-l-xl",
rounded_lg: "rounded-lg",
rounded_md: "rounded-md",
rounded_none: "rounded-none",
rounded_r: "rounded-r",
rounded_r_2xl: "rounded-r-2xl",
rounded_r_3xl: "rounded-r-3xl",
rounded_r_full: "rounded-r-full",
rounded_r_lg: "rounded-r-lg",
rounded_r_md: "rounded-r-md",
rounded_r_none: "rounded-r-none",
rounded_r_sm: "rounded-r-sm",
rounded_r_xl: "rounded-r-xl",
rounded_sm: "rounded-sm",
rounded_t: "rounded-t",
rounded_t_2xl: "rounded-t-2xl",
rounded_t_3xl: "rounded-t-3xl",
rounded_t_full: "rounded-t-full",
rounded_t_lg: "rounded-t-lg",
rounded_t_md: "rounded-t-md",
rounded_t_none: "rounded-t-none",
rounded_t_sm: "rounded-t-sm",
rounded_t_xl: "rounded-t-xl",
rounded_tl: "rounded-tl",
rounded_tl_2xl: "rounded-tl-2xl",
rounded_tl_3xl: "rounded-tl-3xl",
rounded_tl_full: "rounded-tl-full",
rounded_tl_lg: "rounded-tl-lg",
rounded_tl_md: "rounded-tl-md",
rounded_tl_none: "rounded-tl-none",
rounded_tl_sm: "rounded-tl-sm",
rounded_tl_xl: "rounded-tl-xl",
rounded_tr: "rounded-tr",
rounded_tr_2xl: "rounded-tr-2xl",
rounded_tr_3xl: "rounded-tr-3xl",
rounded_tr_full: "rounded-tr-full",
rounded_tr_lg: "rounded-tr-lg",
rounded_tr_md: "rounded-tr-md",
rounded_tr_none: "rounded-tr-none",
rounded_tr_sm: "rounded-tr-sm",
rounded_tr_xl: "rounded-tr-xl",
rounded_xl: "rounded-xl",
};
pub static EFFECTS: Effects = Effects {
bg_blend_color: "bg-blend-color",
bg_blend_color_burn: "bg-blend-color-burn",
bg_blend_color_dodge: "bg-blend-color-dodge",
bg_blend_darken: "bg-blend-darken",
bg_blend_difference: "bg-blend-difference",
bg_blend_exclusion: "bg-blend-exclusion",
bg_blend_hard_light: "bg-blend-hard-light",
bg_blend_hue: "bg-blend-hue",
bg_blend_lighten: "bg-blend-lighten",
bg_blend_luminosity: "bg-blend-luminosity",
bg_blend_multiply: "bg-blend-multiply",
bg_blend_normal: "bg-blend-normal",
bg_blend_overlay: "bg-blend-overlay",
bg_blend_saturation: "bg-blend-saturation",
bg_blend_screen: "bg-blend-screen",
bg_blend_soft_light: "bg-blend-soft-light",
mix_blend_color: "mix-blend-color",
mix_blend_color_burn: "mix-blend-color-burn",
mix_blend_color_dodge: "mix-blend-color-dodge",
mix_blend_darken: "mix-blend-darken",
mix_blend_difference: "mix-blend-difference",
mix_blend_exclusion: "mix-blend-exclusion",
mix_blend_hard_light: "mix-blend-hard-light",
mix_blend_hue: "mix-blend-hue",
mix_blend_lighten: "mix-blend-lighten",
mix_blend_luminosity: "mix-blend-luminosity",
mix_blend_multiply: "mix-blend-multiply",
mix_blend_normal: "mix-blend-normal",
mix_blend_overlay: "mix-blend-overlay",
mix_blend_saturation: "mix-blend-saturation",
mix_blend_screen: "mix-blend-screen",
mix_blend_soft_light: "mix-blend-soft-light",
opacity_0: "opacity-0",
opacity_10: "opacity-10",
opacity_100: "opacity-100",
opacity_20: "opacity-20",
opacity_25: "opacity-25",
opacity_30: "opacity-30",
opacity_40: "opacity-40",
opacity_5: "opacity-5",
opacity_50: "opacity-50",
opacity_60: "opacity-60",
opacity_70: "opacity-70",
opacity_75: "opacity-75",
opacity_80: "opacity-80",
opacity_90: "opacity-90",
opacity_95: "opacity-95",
shadow: "shadow",
shadow_2xl: "shadow-2xl",
shadow_amber_100: "shadow-amber-100",
shadow_amber_200: "shadow-amber-200",
shadow_amber_300: "shadow-amber-300",
shadow_amber_400: "shadow-amber-400",
shadow_amber_50: "shadow-amber-50",
shadow_amber_500: "shadow-amber-500",
shadow_amber_600: "shadow-amber-600",
shadow_amber_700: "shadow-amber-700",
shadow_amber_800: "shadow-amber-800",
shadow_amber_900: "shadow-amber-900",
shadow_black: "shadow-black",
shadow_blue_100: "shadow-blue-100",
shadow_blue_200: "shadow-blue-200",
shadow_blue_300: "shadow-blue-300",
shadow_blue_400: "shadow-blue-400",
shadow_blue_50: "shadow-blue-50",
shadow_blue_500: "shadow-blue-500",
shadow_blue_600: "shadow-blue-600",
shadow_blue_700: "shadow-blue-700",
shadow_blue_800: "shadow-blue-800",
shadow_blue_900: "shadow-blue-900",
shadow_current: "shadow-current",
shadow_cyan_100: "shadow-cyan-100",
shadow_cyan_200: "shadow-cyan-200",
shadow_cyan_300: "shadow-cyan-300",
shadow_cyan_400: "shadow-cyan-400",
shadow_cyan_50: "shadow-cyan-50",
shadow_cyan_500: "shadow-cyan-500",
shadow_cyan_600: "shadow-cyan-600",
shadow_cyan_700: "shadow-cyan-700",
shadow_cyan_800: "shadow-cyan-800",
shadow_cyan_900: "shadow-cyan-900",
shadow_emerald_100: "shadow-emerald-100",
shadow_emerald_200: "shadow-emerald-200",
shadow_emerald_300: "shadow-emerald-300",
shadow_emerald_400: "shadow-emerald-400",
shadow_emerald_50: "shadow-emerald-50",
shadow_emerald_500: "shadow-emerald-500",
shadow_emerald_600: "shadow-emerald-600",
shadow_emerald_700: "shadow-emerald-700",
shadow_emerald_800: "shadow-emerald-800",
shadow_emerald_900: "shadow-emerald-900",
shadow_fuchsia_100: "shadow-fuchsia-100",
shadow_fuchsia_200: "shadow-fuchsia-200",
shadow_fuchsia_300: "shadow-fuchsia-300",
shadow_fuchsia_400: "shadow-fuchsia-400",
shadow_fuchsia_50: "shadow-fuchsia-50",
shadow_fuchsia_500: "shadow-fuchsia-500",
shadow_fuchsia_600: "shadow-fuchsia-600",
shadow_fuchsia_700: "shadow-fuchsia-700",
shadow_fuchsia_800: "shadow-fuchsia-800",
shadow_fuchsia_900: "shadow-fuchsia-900",
shadow_gray_100: "shadow-gray-100",
shadow_gray_200: "shadow-gray-200",
shadow_gray_300: "shadow-gray-300",
shadow_gray_400: "shadow-gray-400",
shadow_gray_50: "shadow-gray-50",
shadow_gray_500: "shadow-gray-500",
shadow_gray_600: "shadow-gray-600",
shadow_gray_700: "shadow-gray-700",
shadow_gray_800: "shadow-gray-800",
shadow_gray_900: "shadow-gray-900",
shadow_green_100: "shadow-green-100",
shadow_green_200: "shadow-green-200",
shadow_green_300: "shadow-green-300",
shadow_green_400: "shadow-green-400",
shadow_green_50: "shadow-green-50",
shadow_green_500: "shadow-green-500",
shadow_green_600: "shadow-green-600",
shadow_green_700: "shadow-green-700",
shadow_green_800: "shadow-green-800",
shadow_green_900: "shadow-green-900",
shadow_indigo_100: "shadow-indigo-100",
shadow_indigo_200: "shadow-indigo-200",
shadow_indigo_300: "shadow-indigo-300",
shadow_indigo_400: "shadow-indigo-400",
shadow_indigo_50: "shadow-indigo-50",
shadow_indigo_500: "shadow-indigo-500",
shadow_indigo_600: "shadow-indigo-600",
shadow_indigo_700: "shadow-indigo-700",
shadow_indigo_800: "shadow-indigo-800",
shadow_indigo_900: "shadow-indigo-900",
shadow_inherit: "shadow-inherit",
shadow_inner: "shadow-inner",
shadow_lg: "shadow-lg",
shadow_lime_100: "shadow-lime-100",
shadow_lime_200: "shadow-lime-200",
shadow_lime_300: "shadow-lime-300",
shadow_lime_400: "shadow-lime-400",
shadow_lime_50: "shadow-lime-50",
shadow_lime_500: "shadow-lime-500",
shadow_lime_600: "shadow-lime-600",
shadow_lime_700: "shadow-lime-700",
shadow_lime_800: "shadow-lime-800",
shadow_lime_900: "shadow-lime-900",
shadow_md: "shadow-md",
shadow_neutral_100: "shadow-neutral-100",
shadow_neutral_200: "shadow-neutral-200",
shadow_neutral_300: "shadow-neutral-300",
shadow_neutral_400: "shadow-neutral-400",
shadow_neutral_50: "shadow-neutral-50",
shadow_neutral_500: "shadow-neutral-500",
shadow_neutral_600: "shadow-neutral-600",
shadow_neutral_700: "shadow-neutral-700",
shadow_neutral_800: "shadow-neutral-800",
shadow_neutral_900: "shadow-neutral-900",
shadow_none: "shadow-none",
shadow_orange_100: "shadow-orange-100",
shadow_orange_200: "shadow-orange-200",
shadow_orange_300: "shadow-orange-300",
shadow_orange_400: "shadow-orange-400",
shadow_orange_50: "shadow-orange-50",
shadow_orange_500: "shadow-orange-500",
shadow_orange_600: "shadow-orange-600",
shadow_orange_700: "shadow-orange-700",
shadow_orange_800: "shadow-orange-800",
shadow_orange_900: "shadow-orange-900",
shadow_pink_100: "shadow-pink-100",
shadow_pink_200: "shadow-pink-200",
shadow_pink_300: "shadow-pink-300",
shadow_pink_400: "shadow-pink-400",
shadow_pink_50: "shadow-pink-50",
shadow_pink_500: "shadow-pink-500",
shadow_pink_600: "shadow-pink-600",
shadow_pink_700: "shadow-pink-700",
shadow_pink_800: "shadow-pink-800",
shadow_pink_900: "shadow-pink-900",
shadow_purple_100: "shadow-purple-100",
shadow_purple_200: "shadow-purple-200",
shadow_purple_300: "shadow-purple-300",
shadow_purple_400: "shadow-purple-400",
shadow_purple_50: "shadow-purple-50",
shadow_purple_500: "shadow-purple-500",
shadow_purple_600: "shadow-purple-600",
shadow_purple_700: "shadow-purple-700",
shadow_purple_800: "shadow-purple-800",
shadow_purple_900: "shadow-purple-900",
shadow_red_100: "shadow-red-100",
shadow_red_200: "shadow-red-200",
shadow_red_300: "shadow-red-300",
shadow_red_400: "shadow-red-400",
shadow_red_50: "shadow-red-50",
shadow_red_500: "shadow-red-500",
shadow_red_600: "shadow-red-600",
shadow_red_700: "shadow-red-700",
shadow_red_800: "shadow-red-800",
shadow_red_900: "shadow-red-900",
shadow_rose_100: "shadow-rose-100",
shadow_rose_200: "shadow-rose-200",
shadow_rose_300: "shadow-rose-300",
shadow_rose_400: "shadow-rose-400",
shadow_rose_50: "shadow-rose-50",
shadow_rose_500: "shadow-rose-500",
shadow_rose_600: "shadow-rose-600",
shadow_rose_700: "shadow-rose-700",
shadow_rose_800: "shadow-rose-800",
shadow_rose_900: "shadow-rose-900",
shadow_sky_100: "shadow-sky-100",
shadow_sky_200: "shadow-sky-200",
shadow_sky_300: "shadow-sky-300",
shadow_sky_400: "shadow-sky-400",
shadow_sky_50: "shadow-sky-50",
shadow_sky_500: "shadow-sky-500",
shadow_sky_600: "shadow-sky-600",
shadow_sky_700: "shadow-sky-700",
shadow_sky_800: "shadow-sky-800",
shadow_sky_900: "shadow-sky-900",
shadow_slate_100: "shadow-slate-100",
shadow_slate_200: "shadow-slate-200",
shadow_slate_300: "shadow-slate-300",
shadow_slate_400: "shadow-slate-400",
shadow_slate_50: "shadow-slate-50",
shadow_slate_500: "shadow-slate-500",
shadow_slate_600: "shadow-slate-600",
shadow_slate_700: "shadow-slate-700",
shadow_slate_800: "shadow-slate-800",
shadow_slate_900: "shadow-slate-900",
shadow_sm: "shadow-sm",
shadow_stone_100: "shadow-stone-100",
shadow_stone_200: "shadow-stone-200",
shadow_stone_300: "shadow-stone-300",
shadow_stone_400: "shadow-stone-400",
shadow_stone_50: "shadow-stone-50",
shadow_stone_500: "shadow-stone-500",
shadow_stone_600: "shadow-stone-600",
shadow_stone_700: "shadow-stone-700",
shadow_stone_800: "shadow-stone-800",
shadow_stone_900: "shadow-stone-900",
shadow_teal_100: "shadow-teal-100",
shadow_teal_200: "shadow-teal-200",
shadow_teal_300: "shadow-teal-300",
shadow_teal_400: "shadow-teal-400",
shadow_teal_50: "shadow-teal-50",
shadow_teal_500: "shadow-teal-500",
shadow_teal_600: "shadow-teal-600",
shadow_teal_700: "shadow-teal-700",
shadow_teal_800: "shadow-teal-800",
shadow_teal_900: "shadow-teal-900",
shadow_transparent: "shadow-transparent",
shadow_violet_100: "shadow-violet-100",
shadow_violet_200: "shadow-violet-200",
shadow_violet_300: "shadow-violet-300",
shadow_violet_400: "shadow-violet-400",
shadow_violet_50: "shadow-violet-50",
shadow_violet_500: "shadow-violet-500",
shadow_violet_600: "shadow-violet-600",
shadow_violet_700: "shadow-violet-700",
shadow_violet_800: "shadow-violet-800",
shadow_violet_900: "shadow-violet-900",
shadow_white: "shadow-white",
shadow_xl: "shadow-xl",
shadow_yellow_100: "shadow-yellow-100",
shadow_yellow_200: "shadow-yellow-200",
shadow_yellow_300: "shadow-yellow-300",
shadow_yellow_400: "shadow-yellow-400",
shadow_yellow_50: "shadow-yellow-50",
shadow_yellow_500: "shadow-yellow-500",
shadow_yellow_600: "shadow-yellow-600",
shadow_yellow_700: "shadow-yellow-700",
shadow_yellow_800: "shadow-yellow-800",
shadow_yellow_900: "shadow-yellow-900",
shadow_zinc_100: "shadow-zinc-100",
shadow_zinc_200: "shadow-zinc-200",
shadow_zinc_300: "shadow-zinc-300",
shadow_zinc_400: "shadow-zinc-400",
shadow_zinc_50: "shadow-zinc-50",
shadow_zinc_500: "shadow-zinc-500",
shadow_zinc_600: "shadow-zinc-600",
shadow_zinc_700: "shadow-zinc-700",
shadow_zinc_800: "shadow-zinc-800",
shadow_zinc_900: "shadow-zinc-900",
};
pub static FILTERS: Filters = Filters {
backdrop_blur: "backdrop-blur",
backdrop_blur_0: "backdrop-blur-0",
backdrop_blur_2xl: "backdrop-blur-2xl",
backdrop_blur_3xl: "backdrop-blur-3xl",
backdrop_blur_lg: "backdrop-blur-lg",
backdrop_blur_md: "backdrop-blur-md",
backdrop_blur_none: "backdrop-blur-none",
backdrop_blur_sm: "backdrop-blur-sm",
backdrop_blur_xl: "backdrop-blur-xl",
backdrop_brightness_0: "backdrop-brightness-0",
backdrop_brightness_100: "backdrop-brightness-100",
backdrop_brightness_105: "backdrop-brightness-105",
backdrop_brightness_110: "backdrop-brightness-110",
backdrop_brightness_125: "backdrop-brightness-125",
backdrop_brightness_150: "backdrop-brightness-150",
backdrop_brightness_200: "backdrop-brightness-200",
backdrop_brightness_50: "backdrop-brightness-50",
backdrop_brightness_75: "backdrop-brightness-75",
backdrop_brightness_90: "backdrop-brightness-90",
backdrop_brightness_95: "backdrop-brightness-95",
backdrop_contrast_0: "backdrop-contrast-0",
backdrop_contrast_100: "backdrop-contrast-100",
backdrop_contrast_125: "backdrop-contrast-125",
backdrop_contrast_150: "backdrop-contrast-150",
backdrop_contrast_200: "backdrop-contrast-200",
backdrop_contrast_50: "backdrop-contrast-50",
backdrop_contrast_75: "backdrop-contrast-75",
backdrop_filter: "backdrop-filter",
backdrop_filter_none: "backdrop-filter-none",
backdrop_grayscale: "backdrop-grayscale",
backdrop_grayscale_0: "backdrop-grayscale-0",
backdrop_hue_rotate_0: "backdrop-hue-rotate-0",
backdrop_hue_rotate_15: "backdrop-hue-rotate-15",
backdrop_hue_rotate_180: "backdrop-hue-rotate-180",
backdrop_hue_rotate_30: "backdrop-hue-rotate-30",
backdrop_hue_rotate_60: "backdrop-hue-rotate-60",
backdrop_hue_rotate_90: "backdrop-hue-rotate-90",
backdrop_invert: "backdrop-invert",
backdrop_invert_0: "backdrop-invert-0",
backdrop_opacity_0: "backdrop-opacity-0",
backdrop_opacity_10: "backdrop-opacity-10",
backdrop_opacity_100: "backdrop-opacity-100",
backdrop_opacity_20: "backdrop-opacity-20",
backdrop_opacity_25: "backdrop-opacity-25",
backdrop_opacity_30: "backdrop-opacity-30",
backdrop_opacity_40: "backdrop-opacity-40",
backdrop_opacity_5: "backdrop-opacity-5",
backdrop_opacity_50: "backdrop-opacity-50",
backdrop_opacity_60: "backdrop-opacity-60",
backdrop_opacity_70: "backdrop-opacity-70",
backdrop_opacity_75: "backdrop-opacity-75",
backdrop_opacity_80: "backdrop-opacity-80",
backdrop_opacity_90: "backdrop-opacity-90",
backdrop_opacity_95: "backdrop-opacity-95",
backdrop_saturate_0: "backdrop-saturate-0",
backdrop_saturate_100: "backdrop-saturate-100",
backdrop_saturate_150: "backdrop-saturate-150",
backdrop_saturate_200: "backdrop-saturate-200",
backdrop_saturate_50: "backdrop-saturate-50",
backdrop_sepia: "backdrop-sepia",
backdrop_sepia_0: "backdrop-sepia-0",
blur: "blur",
blur_0: "blur-0",
blur_2xl: "blur-2xl",
blur_3xl: "blur-3xl",
blur_lg: "blur-lg",
blur_md: "blur-md",
blur_none: "blur-none",
blur_sm: "blur-sm",
blur_xl: "blur-xl",
brightness_0: "brightness-0",
brightness_100: "brightness-100",
brightness_105: "brightness-105",
brightness_110: "brightness-110",
brightness_125: "brightness-125",
brightness_150: "brightness-150",
brightness_200: "brightness-200",
brightness_50: "brightness-50",
brightness_75: "brightness-75",
brightness_90: "brightness-90",
brightness_95: "brightness-95",
contrast_0: "contrast-0",
contrast_100: "contrast-100",
contrast_125: "contrast-125",
contrast_150: "contrast-150",
contrast_200: "contrast-200",
contrast_50: "contrast-50",
contrast_75: "contrast-75",
drop_shadow: "drop-shadow",
drop_shadow_2xl: "drop-shadow-2xl",
drop_shadow_lg: "drop-shadow-lg",
drop_shadow_md: "drop-shadow-md",
drop_shadow_none: "drop-shadow-none",
drop_shadow_sm: "drop-shadow-sm",
drop_shadow_xl: "drop-shadow-xl",
filter: "filter",
filter_none: "filter-none",
grayscale: "grayscale",
grayscale_0: "grayscale-0",
hue_rotate_0: "hue-rotate-0",
hue_rotate_15: "hue-rotate-15",
hue_rotate_180: "hue-rotate-180",
hue_rotate_30: "hue-rotate-30",
hue_rotate_60: "hue-rotate-60",
hue_rotate_90: "hue-rotate-90",
invert: "invert",
invert_0: "invert-0",
saturate_0: "saturate-0",
saturate_100: "saturate-100",
saturate_150: "saturate-150",
saturate_200: "saturate-200",
saturate_50: "saturate-50",
sepia: "sepia",
sepia_0: "sepia-0",
};
pub static FLEX_AND_GRID: FlexAndGrid = FlexAndGrid {
auto_cols_auto: "auto-cols-auto",
auto_cols_fr: "auto-cols-fr",
auto_cols_max: "auto-cols-max",
auto_cols_min: "auto-cols-min",
auto_rows_auto: "auto-rows-auto",
auto_rows_fr: "auto-rows-fr",
auto_rows_max: "auto-rows-max",
auto_rows_min: "auto-rows-min",
basis_0: "basis-0",
basis_0_p_5: "basis-0\\.5",
basis_1: "basis-1",
basis_10: "basis-10",
basis_10_of_12: "basis-10\\/12",
basis_11: "basis-11",
basis_11_of_12: "basis-11\\/12",
basis_12: "basis-12",
basis_14: "basis-14",
basis_16: "basis-16",
basis_1_of_12: "basis-1\\/12",
basis_1_of_2: "basis-1\\/2",
basis_1_of_3: "basis-1\\/3",
basis_1_of_4: "basis-1\\/4",
basis_1_of_5: "basis-1\\/5",
basis_1_of_6: "basis-1\\/6",
basis_1_p_5: "basis-1\\.5",
basis_2: "basis-2",
basis_20: "basis-20",
basis_24: "basis-24",
basis_28: "basis-28",
basis_2_of_12: "basis-2\\/12",
basis_2_of_3: "basis-2\\/3",
basis_2_of_4: "basis-2\\/4",
basis_2_of_5: "basis-2\\/5",
basis_2_of_6: "basis-2\\/6",
basis_2_p_5: "basis-2\\.5",
basis_3: "basis-3",
basis_32: "basis-32",
basis_36: "basis-36",
basis_3_of_12: "basis-3\\/12",
basis_3_of_4: "basis-3\\/4",
basis_3_of_5: "basis-3\\/5",
basis_3_of_6: "basis-3\\/6",
basis_3_p_5: "basis-3\\.5",
basis_4: "basis-4",
basis_40: "basis-40",
basis_44: "basis-44",
basis_48: "basis-48",
basis_4_of_12: "basis-4\\/12",
basis_4_of_5: "basis-4\\/5",
basis_4_of_6: "basis-4\\/6",
basis_5: "basis-5",
basis_52: "basis-52",
basis_56: "basis-56",
basis_5_of_12: "basis-5\\/12",
basis_5_of_6: "basis-5\\/6",
basis_6: "basis-6",
basis_60: "basis-60",
basis_64: "basis-64",
basis_6_of_12: "basis-6\\/12",
basis_7: "basis-7",
basis_72: "basis-72",
basis_7_of_12: "basis-7\\/12",
basis_8: "basis-8",
basis_80: "basis-80",
basis_8_of_12: "basis-8\\/12",
basis_9: "basis-9",
basis_96: "basis-96",
basis_9_of_12: "basis-9\\/12",
basis_auto: "basis-auto",
basis_full: "basis-full",
basis_px: "basis-px",
col_auto: "col-auto",
col_end_1: "col-end-1",
col_end_10: "col-end-10",
col_end_11: "col-end-11",
col_end_12: "col-end-12",
col_end_13: "col-end-13",
col_end_2: "col-end-2",
col_end_3: "col-end-3",
col_end_4: "col-end-4",
col_end_5: "col-end-5",
col_end_6: "col-end-6",
col_end_7: "col-end-7",
col_end_8: "col-end-8",
col_end_9: "col-end-9",
col_end_auto: "col-end-auto",
col_span_1: "col-span-1",
col_span_10: "col-span-10",
col_span_11: "col-span-11",
col_span_12: "col-span-12",
col_span_2: "col-span-2",
col_span_3: "col-span-3",
col_span_4: "col-span-4",
col_span_5: "col-span-5",
col_span_6: "col-span-6",
col_span_7: "col-span-7",
col_span_8: "col-span-8",
col_span_9: "col-span-9",
col_span_full: "col-span-full",
col_start_1: "col-start-1",
col_start_10: "col-start-10",
col_start_11: "col-start-11",
col_start_12: "col-start-12",
col_start_13: "col-start-13",
col_start_2: "col-start-2",
col_start_3: "col-start-3",
col_start_4: "col-start-4",
col_start_5: "col-start-5",
col_start_6: "col-start-6",
col_start_7: "col-start-7",
col_start_8: "col-start-8",
col_start_9: "col-start-9",
col_start_auto: "col-start-auto",
content_around: "content-around",
content_between: "content-between",
content_center: "content-center",
content_end: "content-end",
content_evenly: "content-evenly",
content_start: "content-start",
flex_1: "flex-1",
flex_auto: "flex-auto",
flex_col: "flex-col",
flex_col_reverse: "flex-col-reverse",
flex_grow: "flex-grow",
flex_grow_0: "flex-grow-0",
flex_initial: "flex-initial",
flex_none: "flex-none",
flex_nowrap: "flex-nowrap",
flex_row: "flex-row",
flex_row_reverse: "flex-row-reverse",
flex_shrink: "flex-shrink",
flex_shrink_0: "flex-shrink-0",
flex_wrap: "flex-wrap",
flex_wrap_reverse: "flex-wrap-reverse",
gap_0: "gap-0",
gap_0_p_5: "gap-0\\.5",
gap_1: "gap-1",
gap_10: "gap-10",
gap_11: "gap-11",
gap_12: "gap-12",
gap_14: "gap-14",
gap_16: "gap-16",
gap_1_p_5: "gap-1\\.5",
gap_2: "gap-2",
gap_20: "gap-20",
gap_24: "gap-24",
gap_28: "gap-28",
gap_2_p_5: "gap-2\\.5",
gap_3: "gap-3",
gap_32: "gap-32",
gap_36: "gap-36",
gap_3_p_5: "gap-3\\.5",
gap_4: "gap-4",
gap_40: "gap-40",
gap_44: "gap-44",
gap_48: "gap-48",
gap_5: "gap-5",
gap_52: "gap-52",
gap_56: "gap-56",
gap_6: "gap-6",
gap_60: "gap-60",
gap_64: "gap-64",
gap_7: "gap-7",
gap_72: "gap-72",
gap_8: "gap-8",
gap_80: "gap-80",
gap_9: "gap-9",
gap_96: "gap-96",
gap_px: "gap-px",
gap_x_0: "gap-x-0",
gap_x_0_p_5: "gap-x-0\\.5",
gap_x_1: "gap-x-1",
gap_x_10: "gap-x-10",
gap_x_11: "gap-x-11",
gap_x_12: "gap-x-12",
gap_x_14: "gap-x-14",
gap_x_16: "gap-x-16",
gap_x_1_p_5: "gap-x-1\\.5",
gap_x_2: "gap-x-2",
gap_x_20: "gap-x-20",
gap_x_24: "gap-x-24",
gap_x_28: "gap-x-28",
gap_x_2_p_5: "gap-x-2\\.5",
gap_x_3: "gap-x-3",
gap_x_32: "gap-x-32",
gap_x_36: "gap-x-36",
gap_x_3_p_5: "gap-x-3\\.5",
gap_x_4: "gap-x-4",
gap_x_40: "gap-x-40",
gap_x_44: "gap-x-44",
gap_x_48: "gap-x-48",
gap_x_5: "gap-x-5",
gap_x_52: "gap-x-52",
gap_x_56: "gap-x-56",
gap_x_6: "gap-x-6",
gap_x_60: "gap-x-60",
gap_x_64: "gap-x-64",
gap_x_7: "gap-x-7",
gap_x_72: "gap-x-72",
gap_x_8: "gap-x-8",
gap_x_80: "gap-x-80",
gap_x_9: "gap-x-9",
gap_x_96: "gap-x-96",
gap_x_px: "gap-x-px",
gap_y_0: "gap-y-0",
gap_y_0_p_5: "gap-y-0\\.5",
gap_y_1: "gap-y-1",
gap_y_10: "gap-y-10",
gap_y_11: "gap-y-11",
gap_y_12: "gap-y-12",
gap_y_14: "gap-y-14",
gap_y_16: "gap-y-16",
gap_y_1_p_5: "gap-y-1\\.5",
gap_y_2: "gap-y-2",
gap_y_20: "gap-y-20",
gap_y_24: "gap-y-24",
gap_y_28: "gap-y-28",
gap_y_2_p_5: "gap-y-2\\.5",
gap_y_3: "gap-y-3",
gap_y_32: "gap-y-32",
gap_y_36: "gap-y-36",
gap_y_3_p_5: "gap-y-3\\.5",
gap_y_4: "gap-y-4",
gap_y_40: "gap-y-40",
gap_y_44: "gap-y-44",
gap_y_48: "gap-y-48",
gap_y_5: "gap-y-5",
gap_y_52: "gap-y-52",
gap_y_56: "gap-y-56",
gap_y_6: "gap-y-6",
gap_y_60: "gap-y-60",
gap_y_64: "gap-y-64",
gap_y_7: "gap-y-7",
gap_y_72: "gap-y-72",
gap_y_8: "gap-y-8",
gap_y_80: "gap-y-80",
gap_y_9: "gap-y-9",
gap_y_96: "gap-y-96",
gap_y_px: "gap-y-px",
grid_cols_1: "grid-cols-1",
grid_cols_10: "grid-cols-10",
grid_cols_11: "grid-cols-11",
grid_cols_12: "grid-cols-12",
grid_cols_2: "grid-cols-2",
grid_cols_3: "grid-cols-3",
grid_cols_4: "grid-cols-4",
grid_cols_5: "grid-cols-5",
grid_cols_6: "grid-cols-6",
grid_cols_7: "grid-cols-7",
grid_cols_8: "grid-cols-8",
grid_cols_9: "grid-cols-9",
grid_cols_none: "grid-cols-none",
grid_flow_col: "grid-flow-col",
grid_flow_col_dense: "grid-flow-col-dense",
grid_flow_row: "grid-flow-row",
grid_flow_row_dense: "grid-flow-row-dense",
grid_rows_1: "grid-rows-1",
grid_rows_2: "grid-rows-2",
grid_rows_3: "grid-rows-3",
grid_rows_4: "grid-rows-4",
grid_rows_5: "grid-rows-5",
grid_rows_6: "grid-rows-6",
grid_rows_none: "grid-rows-none",
grow: "grow",
grow_0: "grow-0",
items_baseline: "items-baseline",
items_center: "items-center",
items_end: "items-end",
items_start: "items-start",
items_stretch: "items-stretch",
justify_around: "justify-around",
justify_between: "justify-between",
justify_center: "justify-center",
justify_end: "justify-end",
justify_evenly: "justify-evenly",
justify_items_center: "justify-items-center",
justify_items_end: "justify-items-end",
justify_items_start: "justify-items-start",
justify_items_stretch: "justify-items-stretch",
justify_self_auto: "justify-self-auto",
justify_self_center: "justify-self-center",
justify_self_end: "justify-self-end",
justify_self_start: "justify-self-start",
justify_self_stretch: "justify-self-stretch",
justify_start: "justify-start",
order_1: "order-1",
order_10: "order-10",
order_11: "order-11",
order_12: "order-12",
order_2: "order-2",
order_3: "order-3",
order_4: "order-4",
order_5: "order-5",
order_6: "order-6",
order_7: "order-7",
order_8: "order-8",
order_9: "order-9",
order_first: "order-first",
order_last: "order-last",
order_none: "order-none",
place_content_around: "place-content-around",
place_content_between: "place-content-between",
place_content_center: "place-content-center",
place_content_end: "place-content-end",
place_content_evenly: "place-content-evenly",
place_content_start: "place-content-start",
place_content_stretch: "place-content-stretch",
place_items_center: "place-items-center",
place_items_end: "place-items-end",
place_items_start: "place-items-start",
place_items_stretch: "place-items-stretch",
place_self_auto: "place-self-auto",
place_self_center: "place-self-center",
place_self_end: "place-self-end",
place_self_start: "place-self-start",
place_self_stretch: "place-self-stretch",
row_auto: "row-auto",
row_end_1: "row-end-1",
row_end_2: "row-end-2",
row_end_3: "row-end-3",
row_end_4: "row-end-4",
row_end_5: "row-end-5",
row_end_6: "row-end-6",
row_end_7: "row-end-7",
row_end_auto: "row-end-auto",
row_span_1: "row-span-1",
row_span_2: "row-span-2",
row_span_3: "row-span-3",
row_span_4: "row-span-4",
row_span_5: "row-span-5",
row_span_6: "row-span-6",
row_span_full: "row-span-full",
row_start_1: "row-start-1",
row_start_2: "row-start-2",
row_start_3: "row-start-3",
row_start_4: "row-start-4",
row_start_5: "row-start-5",
row_start_6: "row-start-6",
row_start_7: "row-start-7",
row_start_auto: "row-start-auto",
self_auto: "self-auto",
self_baseline: "self-baseline",
self_center: "self-center",
self_end: "self-end",
self_start: "self-start",
self_stretch: "self-stretch",
shrink: "shrink",
shrink_0: "shrink-0",
};
pub static INTERACTIVITY: Interactivity = Interactivity {
accent_amber_100: "accent-amber-100",
accent_amber_200: "accent-amber-200",
accent_amber_300: "accent-amber-300",
accent_amber_400: "accent-amber-400",
accent_amber_50: "accent-amber-50",
accent_amber_500: "accent-amber-500",
accent_amber_600: "accent-amber-600",
accent_amber_700: "accent-amber-700",
accent_amber_800: "accent-amber-800",
accent_amber_900: "accent-amber-900",
accent_auto: "accent-auto",
accent_black: "accent-black",
accent_blue_100: "accent-blue-100",
accent_blue_200: "accent-blue-200",
accent_blue_300: "accent-blue-300",
accent_blue_400: "accent-blue-400",
accent_blue_50: "accent-blue-50",
accent_blue_500: "accent-blue-500",
accent_blue_600: "accent-blue-600",
accent_blue_700: "accent-blue-700",
accent_blue_800: "accent-blue-800",
accent_blue_900: "accent-blue-900",
accent_current: "accent-current",
accent_cyan_100: "accent-cyan-100",
accent_cyan_200: "accent-cyan-200",
accent_cyan_300: "accent-cyan-300",
accent_cyan_400: "accent-cyan-400",
accent_cyan_50: "accent-cyan-50",
accent_cyan_500: "accent-cyan-500",
accent_cyan_600: "accent-cyan-600",
accent_cyan_700: "accent-cyan-700",
accent_cyan_800: "accent-cyan-800",
accent_cyan_900: "accent-cyan-900",
accent_emerald_100: "accent-emerald-100",
accent_emerald_200: "accent-emerald-200",
accent_emerald_300: "accent-emerald-300",
accent_emerald_400: "accent-emerald-400",
accent_emerald_50: "accent-emerald-50",
accent_emerald_500: "accent-emerald-500",
accent_emerald_600: "accent-emerald-600",
accent_emerald_700: "accent-emerald-700",
accent_emerald_800: "accent-emerald-800",
accent_emerald_900: "accent-emerald-900",
accent_fuchsia_100: "accent-fuchsia-100",
accent_fuchsia_200: "accent-fuchsia-200",
accent_fuchsia_300: "accent-fuchsia-300",
accent_fuchsia_400: "accent-fuchsia-400",
accent_fuchsia_50: "accent-fuchsia-50",
accent_fuchsia_500: "accent-fuchsia-500",
accent_fuchsia_600: "accent-fuchsia-600",
accent_fuchsia_700: "accent-fuchsia-700",
accent_fuchsia_800: "accent-fuchsia-800",
accent_fuchsia_900: "accent-fuchsia-900",
accent_gray_100: "accent-gray-100",
accent_gray_200: "accent-gray-200",
accent_gray_300: "accent-gray-300",
accent_gray_400: "accent-gray-400",
accent_gray_50: "accent-gray-50",
accent_gray_500: "accent-gray-500",
accent_gray_600: "accent-gray-600",
accent_gray_700: "accent-gray-700",
accent_gray_800: "accent-gray-800",
accent_gray_900: "accent-gray-900",
accent_green_100: "accent-green-100",
accent_green_200: "accent-green-200",
accent_green_300: "accent-green-300",
accent_green_400: "accent-green-400",
accent_green_50: "accent-green-50",
accent_green_500: "accent-green-500",
accent_green_600: "accent-green-600",
accent_green_700: "accent-green-700",
accent_green_800: "accent-green-800",
accent_green_900: "accent-green-900",
accent_indigo_100: "accent-indigo-100",
accent_indigo_200: "accent-indigo-200",
accent_indigo_300: "accent-indigo-300",
accent_indigo_400: "accent-indigo-400",
accent_indigo_50: "accent-indigo-50",
accent_indigo_500: "accent-indigo-500",
accent_indigo_600: "accent-indigo-600",
accent_indigo_700: "accent-indigo-700",
accent_indigo_800: "accent-indigo-800",
accent_indigo_900: "accent-indigo-900",
accent_inherit: "accent-inherit",
accent_lime_100: "accent-lime-100",
accent_lime_200: "accent-lime-200",
accent_lime_300: "accent-lime-300",
accent_lime_400: "accent-lime-400",
accent_lime_50: "accent-lime-50",
accent_lime_500: "accent-lime-500",
accent_lime_600: "accent-lime-600",
accent_lime_700: "accent-lime-700",
accent_lime_800: "accent-lime-800",
accent_lime_900: "accent-lime-900",
accent_neutral_100: "accent-neutral-100",
accent_neutral_200: "accent-neutral-200",
accent_neutral_300: "accent-neutral-300",
accent_neutral_400: "accent-neutral-400",
accent_neutral_50: "accent-neutral-50",
accent_neutral_500: "accent-neutral-500",
accent_neutral_600: "accent-neutral-600",
accent_neutral_700: "accent-neutral-700",
accent_neutral_800: "accent-neutral-800",
accent_neutral_900: "accent-neutral-900",
accent_orange_100: "accent-orange-100",
accent_orange_200: "accent-orange-200",
accent_orange_300: "accent-orange-300",
accent_orange_400: "accent-orange-400",
accent_orange_50: "accent-orange-50",
accent_orange_500: "accent-orange-500",
accent_orange_600: "accent-orange-600",
accent_orange_700: "accent-orange-700",
accent_orange_800: "accent-orange-800",
accent_orange_900: "accent-orange-900",
accent_pink_100: "accent-pink-100",
accent_pink_200: "accent-pink-200",
accent_pink_300: "accent-pink-300",
accent_pink_400: "accent-pink-400",
accent_pink_50: "accent-pink-50",
accent_pink_500: "accent-pink-500",
accent_pink_600: "accent-pink-600",
accent_pink_700: "accent-pink-700",
accent_pink_800: "accent-pink-800",
accent_pink_900: "accent-pink-900",
accent_purple_100: "accent-purple-100",
accent_purple_200: "accent-purple-200",
accent_purple_300: "accent-purple-300",
accent_purple_400: "accent-purple-400",
accent_purple_50: "accent-purple-50",
accent_purple_500: "accent-purple-500",
accent_purple_600: "accent-purple-600",
accent_purple_700: "accent-purple-700",
accent_purple_800: "accent-purple-800",
accent_purple_900: "accent-purple-900",
accent_red_100: "accent-red-100",
accent_red_200: "accent-red-200",
accent_red_300: "accent-red-300",
accent_red_400: "accent-red-400",
accent_red_50: "accent-red-50",
accent_red_500: "accent-red-500",
accent_red_600: "accent-red-600",
accent_red_700: "accent-red-700",
accent_red_800: "accent-red-800",
accent_red_900: "accent-red-900",
accent_rose_100: "accent-rose-100",
accent_rose_200: "accent-rose-200",
accent_rose_300: "accent-rose-300",
accent_rose_400: "accent-rose-400",
accent_rose_50: "accent-rose-50",
accent_rose_500: "accent-rose-500",
accent_rose_600: "accent-rose-600",
accent_rose_700: "accent-rose-700",
accent_rose_800: "accent-rose-800",
accent_rose_900: "accent-rose-900",
accent_sky_100: "accent-sky-100",
accent_sky_200: "accent-sky-200",
accent_sky_300: "accent-sky-300",
accent_sky_400: "accent-sky-400",
accent_sky_50: "accent-sky-50",
accent_sky_500: "accent-sky-500",
accent_sky_600: "accent-sky-600",
accent_sky_700: "accent-sky-700",
accent_sky_800: "accent-sky-800",
accent_sky_900: "accent-sky-900",
accent_slate_100: "accent-slate-100",
accent_slate_200: "accent-slate-200",
accent_slate_300: "accent-slate-300",
accent_slate_400: "accent-slate-400",
accent_slate_50: "accent-slate-50",
accent_slate_500: "accent-slate-500",
accent_slate_600: "accent-slate-600",
accent_slate_700: "accent-slate-700",
accent_slate_800: "accent-slate-800",
accent_slate_900: "accent-slate-900",
accent_stone_100: "accent-stone-100",
accent_stone_200: "accent-stone-200",
accent_stone_300: "accent-stone-300",
accent_stone_400: "accent-stone-400",
accent_stone_50: "accent-stone-50",
accent_stone_500: "accent-stone-500",
accent_stone_600: "accent-stone-600",
accent_stone_700: "accent-stone-700",
accent_stone_800: "accent-stone-800",
accent_stone_900: "accent-stone-900",
accent_teal_100: "accent-teal-100",
accent_teal_200: "accent-teal-200",
accent_teal_300: "accent-teal-300",
accent_teal_400: "accent-teal-400",
accent_teal_50: "accent-teal-50",
accent_teal_500: "accent-teal-500",
accent_teal_600: "accent-teal-600",
accent_teal_700: "accent-teal-700",
accent_teal_800: "accent-teal-800",
accent_teal_900: "accent-teal-900",
accent_transparent: "accent-transparent",
accent_violet_100: "accent-violet-100",
accent_violet_200: "accent-violet-200",
accent_violet_300: "accent-violet-300",
accent_violet_400: "accent-violet-400",
accent_violet_50: "accent-violet-50",
accent_violet_500: "accent-violet-500",
accent_violet_600: "accent-violet-600",
accent_violet_700: "accent-violet-700",
accent_violet_800: "accent-violet-800",
accent_violet_900: "accent-violet-900",
accent_white: "accent-white",
accent_yellow_100: "accent-yellow-100",
accent_yellow_200: "accent-yellow-200",
accent_yellow_300: "accent-yellow-300",
accent_yellow_400: "accent-yellow-400",
accent_yellow_50: "accent-yellow-50",
accent_yellow_500: "accent-yellow-500",
accent_yellow_600: "accent-yellow-600",
accent_yellow_700: "accent-yellow-700",
accent_yellow_800: "accent-yellow-800",
accent_yellow_900: "accent-yellow-900",
accent_zinc_100: "accent-zinc-100",
accent_zinc_200: "accent-zinc-200",
accent_zinc_300: "accent-zinc-300",
accent_zinc_400: "accent-zinc-400",
accent_zinc_50: "accent-zinc-50",
accent_zinc_500: "accent-zinc-500",
accent_zinc_600: "accent-zinc-600",
accent_zinc_700: "accent-zinc-700",
accent_zinc_800: "accent-zinc-800",
accent_zinc_900: "accent-zinc-900",
appearance_none: "appearance-none",
caret_amber_100: "caret-amber-100",
caret_amber_200: "caret-amber-200",
caret_amber_300: "caret-amber-300",
caret_amber_400: "caret-amber-400",
caret_amber_50: "caret-amber-50",
caret_amber_500: "caret-amber-500",
caret_amber_600: "caret-amber-600",
caret_amber_700: "caret-amber-700",
caret_amber_800: "caret-amber-800",
caret_amber_900: "caret-amber-900",
caret_black: "caret-black",
caret_blue_100: "caret-blue-100",
caret_blue_200: "caret-blue-200",
caret_blue_300: "caret-blue-300",
caret_blue_400: "caret-blue-400",
caret_blue_50: "caret-blue-50",
caret_blue_500: "caret-blue-500",
caret_blue_600: "caret-blue-600",
caret_blue_700: "caret-blue-700",
caret_blue_800: "caret-blue-800",
caret_blue_900: "caret-blue-900",
caret_current: "caret-current",
caret_cyan_100: "caret-cyan-100",
caret_cyan_200: "caret-cyan-200",
caret_cyan_300: "caret-cyan-300",
caret_cyan_400: "caret-cyan-400",
caret_cyan_50: "caret-cyan-50",
caret_cyan_500: "caret-cyan-500",
caret_cyan_600: "caret-cyan-600",
caret_cyan_700: "caret-cyan-700",
caret_cyan_800: "caret-cyan-800",
caret_cyan_900: "caret-cyan-900",
caret_emerald_100: "caret-emerald-100",
caret_emerald_200: "caret-emerald-200",
caret_emerald_300: "caret-emerald-300",
caret_emerald_400: "caret-emerald-400",
caret_emerald_50: "caret-emerald-50",
caret_emerald_500: "caret-emerald-500",
caret_emerald_600: "caret-emerald-600",
caret_emerald_700: "caret-emerald-700",
caret_emerald_800: "caret-emerald-800",
caret_emerald_900: "caret-emerald-900",
caret_fuchsia_100: "caret-fuchsia-100",
caret_fuchsia_200: "caret-fuchsia-200",
caret_fuchsia_300: "caret-fuchsia-300",
caret_fuchsia_400: "caret-fuchsia-400",
caret_fuchsia_50: "caret-fuchsia-50",
caret_fuchsia_500: "caret-fuchsia-500",
caret_fuchsia_600: "caret-fuchsia-600",
caret_fuchsia_700: "caret-fuchsia-700",
caret_fuchsia_800: "caret-fuchsia-800",
caret_fuchsia_900: "caret-fuchsia-900",
caret_gray_100: "caret-gray-100",
caret_gray_200: "caret-gray-200",
caret_gray_300: "caret-gray-300",
caret_gray_400: "caret-gray-400",
caret_gray_50: "caret-gray-50",
caret_gray_500: "caret-gray-500",
caret_gray_600: "caret-gray-600",
caret_gray_700: "caret-gray-700",
caret_gray_800: "caret-gray-800",
caret_gray_900: "caret-gray-900",
caret_green_100: "caret-green-100",
caret_green_200: "caret-green-200",
caret_green_300: "caret-green-300",
caret_green_400: "caret-green-400",
caret_green_50: "caret-green-50",
caret_green_500: "caret-green-500",
caret_green_600: "caret-green-600",
caret_green_700: "caret-green-700",
caret_green_800: "caret-green-800",
caret_green_900: "caret-green-900",
caret_indigo_100: "caret-indigo-100",
caret_indigo_200: "caret-indigo-200",
caret_indigo_300: "caret-indigo-300",
caret_indigo_400: "caret-indigo-400",
caret_indigo_50: "caret-indigo-50",
caret_indigo_500: "caret-indigo-500",
caret_indigo_600: "caret-indigo-600",
caret_indigo_700: "caret-indigo-700",
caret_indigo_800: "caret-indigo-800",
caret_indigo_900: "caret-indigo-900",
caret_inherit: "caret-inherit",
caret_lime_100: "caret-lime-100",
caret_lime_200: "caret-lime-200",
caret_lime_300: "caret-lime-300",
caret_lime_400: "caret-lime-400",
caret_lime_50: "caret-lime-50",
caret_lime_500: "caret-lime-500",
caret_lime_600: "caret-lime-600",
caret_lime_700: "caret-lime-700",
caret_lime_800: "caret-lime-800",
caret_lime_900: "caret-lime-900",
caret_neutral_100: "caret-neutral-100",
caret_neutral_200: "caret-neutral-200",
caret_neutral_300: "caret-neutral-300",
caret_neutral_400: "caret-neutral-400",
caret_neutral_50: "caret-neutral-50",
caret_neutral_500: "caret-neutral-500",
caret_neutral_600: "caret-neutral-600",
caret_neutral_700: "caret-neutral-700",
caret_neutral_800: "caret-neutral-800",
caret_neutral_900: "caret-neutral-900",
caret_orange_100: "caret-orange-100",
caret_orange_200: "caret-orange-200",
caret_orange_300: "caret-orange-300",
caret_orange_400: "caret-orange-400",
caret_orange_50: "caret-orange-50",
caret_orange_500: "caret-orange-500",
caret_orange_600: "caret-orange-600",
caret_orange_700: "caret-orange-700",
caret_orange_800: "caret-orange-800",
caret_orange_900: "caret-orange-900",
caret_pink_100: "caret-pink-100",
caret_pink_200: "caret-pink-200",
caret_pink_300: "caret-pink-300",
caret_pink_400: "caret-pink-400",
caret_pink_50: "caret-pink-50",
caret_pink_500: "caret-pink-500",
caret_pink_600: "caret-pink-600",
caret_pink_700: "caret-pink-700",
caret_pink_800: "caret-pink-800",
caret_pink_900: "caret-pink-900",
caret_purple_100: "caret-purple-100",
caret_purple_200: "caret-purple-200",
caret_purple_300: "caret-purple-300",
caret_purple_400: "caret-purple-400",
caret_purple_50: "caret-purple-50",
caret_purple_500: "caret-purple-500",
caret_purple_600: "caret-purple-600",
caret_purple_700: "caret-purple-700",
caret_purple_800: "caret-purple-800",
caret_purple_900: "caret-purple-900",
caret_red_100: "caret-red-100",
caret_red_200: "caret-red-200",
caret_red_300: "caret-red-300",
caret_red_400: "caret-red-400",
caret_red_50: "caret-red-50",
caret_red_500: "caret-red-500",
caret_red_600: "caret-red-600",
caret_red_700: "caret-red-700",
caret_red_800: "caret-red-800",
caret_red_900: "caret-red-900",
caret_rose_100: "caret-rose-100",
caret_rose_200: "caret-rose-200",
caret_rose_300: "caret-rose-300",
caret_rose_400: "caret-rose-400",
caret_rose_50: "caret-rose-50",
caret_rose_500: "caret-rose-500",
caret_rose_600: "caret-rose-600",
caret_rose_700: "caret-rose-700",
caret_rose_800: "caret-rose-800",
caret_rose_900: "caret-rose-900",
caret_sky_100: "caret-sky-100",
caret_sky_200: "caret-sky-200",
caret_sky_300: "caret-sky-300",
caret_sky_400: "caret-sky-400",
caret_sky_50: "caret-sky-50",
caret_sky_500: "caret-sky-500",
caret_sky_600: "caret-sky-600",
caret_sky_700: "caret-sky-700",
caret_sky_800: "caret-sky-800",
caret_sky_900: "caret-sky-900",
caret_slate_100: "caret-slate-100",
caret_slate_200: "caret-slate-200",
caret_slate_300: "caret-slate-300",
caret_slate_400: "caret-slate-400",
caret_slate_50: "caret-slate-50",
caret_slate_500: "caret-slate-500",
caret_slate_600: "caret-slate-600",
caret_slate_700: "caret-slate-700",
caret_slate_800: "caret-slate-800",
caret_slate_900: "caret-slate-900",
caret_stone_100: "caret-stone-100",
caret_stone_200: "caret-stone-200",
caret_stone_300: "caret-stone-300",
caret_stone_400: "caret-stone-400",
caret_stone_50: "caret-stone-50",
caret_stone_500: "caret-stone-500",
caret_stone_600: "caret-stone-600",
caret_stone_700: "caret-stone-700",
caret_stone_800: "caret-stone-800",
caret_stone_900: "caret-stone-900",
caret_teal_100: "caret-teal-100",
caret_teal_200: "caret-teal-200",
caret_teal_300: "caret-teal-300",
caret_teal_400: "caret-teal-400",
caret_teal_50: "caret-teal-50",
caret_teal_500: "caret-teal-500",
caret_teal_600: "caret-teal-600",
caret_teal_700: "caret-teal-700",
caret_teal_800: "caret-teal-800",
caret_teal_900: "caret-teal-900",
caret_transparent: "caret-transparent",
caret_violet_100: "caret-violet-100",
caret_violet_200: "caret-violet-200",
caret_violet_300: "caret-violet-300",
caret_violet_400: "caret-violet-400",
caret_violet_50: "caret-violet-50",
caret_violet_500: "caret-violet-500",
caret_violet_600: "caret-violet-600",
caret_violet_700: "caret-violet-700",
caret_violet_800: "caret-violet-800",
caret_violet_900: "caret-violet-900",
caret_white: "caret-white",
caret_yellow_100: "caret-yellow-100",
caret_yellow_200: "caret-yellow-200",
caret_yellow_300: "caret-yellow-300",
caret_yellow_400: "caret-yellow-400",
caret_yellow_50: "caret-yellow-50",
caret_yellow_500: "caret-yellow-500",
caret_yellow_600: "caret-yellow-600",
caret_yellow_700: "caret-yellow-700",
caret_yellow_800: "caret-yellow-800",
caret_yellow_900: "caret-yellow-900",
caret_zinc_100: "caret-zinc-100",
caret_zinc_200: "caret-zinc-200",
caret_zinc_300: "caret-zinc-300",
caret_zinc_400: "caret-zinc-400",
caret_zinc_50: "caret-zinc-50",
caret_zinc_500: "caret-zinc-500",
caret_zinc_600: "caret-zinc-600",
caret_zinc_700: "caret-zinc-700",
caret_zinc_800: "caret-zinc-800",
caret_zinc_900: "caret-zinc-900",
cursor_alias: "cursor-alias",
cursor_all_scroll: "cursor-all-scroll",
cursor_auto: "cursor-auto",
cursor_cell: "cursor-cell",
cursor_col_resize: "cursor-col-resize",
cursor_context_menu: "cursor-context-menu",
cursor_copy: "cursor-copy",
cursor_crosshair: "cursor-crosshair",
cursor_default: "cursor-default",
cursor_e_resize: "cursor-e-resize",
cursor_ew_resize: "cursor-ew-resize",
cursor_grab: "cursor-grab",
cursor_grabbing: "cursor-grabbing",
cursor_help: "cursor-help",
cursor_move: "cursor-move",
cursor_n_resize: "cursor-n-resize",
cursor_ne_resize: "cursor-ne-resize",
cursor_nesw_resize: "cursor-nesw-resize",
cursor_no_drop: "cursor-no-drop",
cursor_none: "cursor-none",
cursor_not_allowed: "cursor-not-allowed",
cursor_ns_resize: "cursor-ns-resize",
cursor_nw_resize: "cursor-nw-resize",
cursor_nwse_resize: "cursor-nwse-resize",
cursor_pointer: "cursor-pointer",
cursor_progress: "cursor-progress",
cursor_row_resize: "cursor-row-resize",
cursor_s_resize: "cursor-s-resize",
cursor_se_resize: "cursor-se-resize",
cursor_sw_resize: "cursor-sw-resize",
cursor_text: "cursor-text",
cursor_vertical_text: "cursor-vertical-text",
cursor_w_resize: "cursor-w-resize",
cursor_wait: "cursor-wait",
cursor_zoom_in: "cursor-zoom-in",
cursor_zoom_out: "cursor-zoom-out",
pointer_events_auto: "pointer-events-auto",
pointer_events_none: "pointer-events-none",
resize: "resize",
resize_none: "resize-none",
resize_x: "resize-x",
resize_y: "resize-y",
scroll_auto: "scroll-auto",
scroll_m_0: "scroll-m-0",
scroll_m_0_p_5: "scroll-m-0\\.5",
scroll_m_1: "scroll-m-1",
scroll_m_10: "scroll-m-10",
scroll_m_11: "scroll-m-11",
scroll_m_12: "scroll-m-12",
scroll_m_14: "scroll-m-14",
scroll_m_16: "scroll-m-16",
scroll_m_1_p_5: "scroll-m-1\\.5",
scroll_m_2: "scroll-m-2",
scroll_m_20: "scroll-m-20",
scroll_m_24: "scroll-m-24",
scroll_m_28: "scroll-m-28",
scroll_m_2_p_5: "scroll-m-2\\.5",
scroll_m_3: "scroll-m-3",
scroll_m_32: "scroll-m-32",
scroll_m_36: "scroll-m-36",
scroll_m_3_p_5: "scroll-m-3\\.5",
scroll_m_4: "scroll-m-4",
scroll_m_40: "scroll-m-40",
scroll_m_44: "scroll-m-44",
scroll_m_48: "scroll-m-48",
scroll_m_5: "scroll-m-5",
scroll_m_52: "scroll-m-52",
scroll_m_56: "scroll-m-56",
scroll_m_6: "scroll-m-6",
scroll_m_60: "scroll-m-60",
scroll_m_64: "scroll-m-64",
scroll_m_7: "scroll-m-7",
scroll_m_72: "scroll-m-72",
scroll_m_8: "scroll-m-8",
scroll_m_80: "scroll-m-80",
scroll_m_9: "scroll-m-9",
scroll_m_96: "scroll-m-96",
scroll_m_px: "scroll-m-px",
scroll_mb_0: "scroll-mb-0",
scroll_mb_0_p_5: "scroll-mb-0\\.5",
scroll_mb_1: "scroll-mb-1",
scroll_mb_10: "scroll-mb-10",
scroll_mb_11: "scroll-mb-11",
scroll_mb_12: "scroll-mb-12",
scroll_mb_14: "scroll-mb-14",
scroll_mb_16: "scroll-mb-16",
scroll_mb_1_p_5: "scroll-mb-1\\.5",
scroll_mb_2: "scroll-mb-2",
scroll_mb_20: "scroll-mb-20",
scroll_mb_24: "scroll-mb-24",
scroll_mb_28: "scroll-mb-28",
scroll_mb_2_p_5: "scroll-mb-2\\.5",
scroll_mb_3: "scroll-mb-3",
scroll_mb_32: "scroll-mb-32",
scroll_mb_36: "scroll-mb-36",
scroll_mb_3_p_5: "scroll-mb-3\\.5",
scroll_mb_4: "scroll-mb-4",
scroll_mb_40: "scroll-mb-40",
scroll_mb_44: "scroll-mb-44",
scroll_mb_48: "scroll-mb-48",
scroll_mb_5: "scroll-mb-5",
scroll_mb_52: "scroll-mb-52",
scroll_mb_56: "scroll-mb-56",
scroll_mb_6: "scroll-mb-6",
scroll_mb_60: "scroll-mb-60",
scroll_mb_64: "scroll-mb-64",
scroll_mb_7: "scroll-mb-7",
scroll_mb_72: "scroll-mb-72",
scroll_mb_8: "scroll-mb-8",
scroll_mb_80: "scroll-mb-80",
scroll_mb_9: "scroll-mb-9",
scroll_mb_96: "scroll-mb-96",
scroll_mb_px: "scroll-mb-px",
scroll_ml_0: "scroll-ml-0",
scroll_ml_0_p_5: "scroll-ml-0\\.5",
scroll_ml_1: "scroll-ml-1",
scroll_ml_10: "scroll-ml-10",
scroll_ml_11: "scroll-ml-11",
scroll_ml_12: "scroll-ml-12",
scroll_ml_14: "scroll-ml-14",
scroll_ml_16: "scroll-ml-16",
scroll_ml_1_p_5: "scroll-ml-1\\.5",
scroll_ml_2: "scroll-ml-2",
scroll_ml_20: "scroll-ml-20",
scroll_ml_24: "scroll-ml-24",
scroll_ml_28: "scroll-ml-28",
scroll_ml_2_p_5: "scroll-ml-2\\.5",
scroll_ml_3: "scroll-ml-3",
scroll_ml_32: "scroll-ml-32",
scroll_ml_36: "scroll-ml-36",
scroll_ml_3_p_5: "scroll-ml-3\\.5",
scroll_ml_4: "scroll-ml-4",
scroll_ml_40: "scroll-ml-40",
scroll_ml_44: "scroll-ml-44",
scroll_ml_48: "scroll-ml-48",
scroll_ml_5: "scroll-ml-5",
scroll_ml_52: "scroll-ml-52",
scroll_ml_56: "scroll-ml-56",
scroll_ml_6: "scroll-ml-6",
scroll_ml_60: "scroll-ml-60",
scroll_ml_64: "scroll-ml-64",
scroll_ml_7: "scroll-ml-7",
scroll_ml_72: "scroll-ml-72",
scroll_ml_8: "scroll-ml-8",
scroll_ml_80: "scroll-ml-80",
scroll_ml_9: "scroll-ml-9",
scroll_ml_96: "scroll-ml-96",
scroll_ml_px: "scroll-ml-px",
scroll_mr_0: "scroll-mr-0",
scroll_mr_0_p_5: "scroll-mr-0\\.5",
scroll_mr_1: "scroll-mr-1",
scroll_mr_10: "scroll-mr-10",
scroll_mr_11: "scroll-mr-11",
scroll_mr_12: "scroll-mr-12",
scroll_mr_14: "scroll-mr-14",
scroll_mr_16: "scroll-mr-16",
scroll_mr_1_p_5: "scroll-mr-1\\.5",
scroll_mr_2: "scroll-mr-2",
scroll_mr_20: "scroll-mr-20",
scroll_mr_24: "scroll-mr-24",
scroll_mr_28: "scroll-mr-28",
scroll_mr_2_p_5: "scroll-mr-2\\.5",
scroll_mr_3: "scroll-mr-3",
scroll_mr_32: "scroll-mr-32",
scroll_mr_36: "scroll-mr-36",
scroll_mr_3_p_5: "scroll-mr-3\\.5",
scroll_mr_4: "scroll-mr-4",
scroll_mr_40: "scroll-mr-40",
scroll_mr_44: "scroll-mr-44",
scroll_mr_48: "scroll-mr-48",
scroll_mr_5: "scroll-mr-5",
scroll_mr_52: "scroll-mr-52",
scroll_mr_56: "scroll-mr-56",
scroll_mr_6: "scroll-mr-6",
scroll_mr_60: "scroll-mr-60",
scroll_mr_64: "scroll-mr-64",
scroll_mr_7: "scroll-mr-7",
scroll_mr_72: "scroll-mr-72",
scroll_mr_8: "scroll-mr-8",
scroll_mr_80: "scroll-mr-80",
scroll_mr_9: "scroll-mr-9",
scroll_mr_96: "scroll-mr-96",
scroll_mr_px: "scroll-mr-px",
scroll_mt_0: "scroll-mt-0",
scroll_mt_0_p_5: "scroll-mt-0\\.5",
scroll_mt_1: "scroll-mt-1",
scroll_mt_10: "scroll-mt-10",
scroll_mt_11: "scroll-mt-11",
scroll_mt_12: "scroll-mt-12",
scroll_mt_14: "scroll-mt-14",
scroll_mt_16: "scroll-mt-16",
scroll_mt_1_p_5: "scroll-mt-1\\.5",
scroll_mt_2: "scroll-mt-2",
scroll_mt_20: "scroll-mt-20",
scroll_mt_24: "scroll-mt-24",
scroll_mt_28: "scroll-mt-28",
scroll_mt_2_p_5: "scroll-mt-2\\.5",
scroll_mt_3: "scroll-mt-3",
scroll_mt_32: "scroll-mt-32",
scroll_mt_36: "scroll-mt-36",
scroll_mt_3_p_5: "scroll-mt-3\\.5",
scroll_mt_4: "scroll-mt-4",
scroll_mt_40: "scroll-mt-40",
scroll_mt_44: "scroll-mt-44",
scroll_mt_48: "scroll-mt-48",
scroll_mt_5: "scroll-mt-5",
scroll_mt_52: "scroll-mt-52",
scroll_mt_56: "scroll-mt-56",
scroll_mt_6: "scroll-mt-6",
scroll_mt_60: "scroll-mt-60",
scroll_mt_64: "scroll-mt-64",
scroll_mt_7: "scroll-mt-7",
scroll_mt_72: "scroll-mt-72",
scroll_mt_8: "scroll-mt-8",
scroll_mt_80: "scroll-mt-80",
scroll_mt_9: "scroll-mt-9",
scroll_mt_96: "scroll-mt-96",
scroll_mt_px: "scroll-mt-px",
scroll_mx_0: "scroll-mx-0",
scroll_mx_0_p_5: "scroll-mx-0\\.5",
scroll_mx_1: "scroll-mx-1",
scroll_mx_10: "scroll-mx-10",
scroll_mx_11: "scroll-mx-11",
scroll_mx_12: "scroll-mx-12",
scroll_mx_14: "scroll-mx-14",
scroll_mx_16: "scroll-mx-16",
scroll_mx_1_p_5: "scroll-mx-1\\.5",
scroll_mx_2: "scroll-mx-2",
scroll_mx_20: "scroll-mx-20",
scroll_mx_24: "scroll-mx-24",
scroll_mx_28: "scroll-mx-28",
scroll_mx_2_p_5: "scroll-mx-2\\.5",
scroll_mx_3: "scroll-mx-3",
scroll_mx_32: "scroll-mx-32",
scroll_mx_36: "scroll-mx-36",
scroll_mx_3_p_5: "scroll-mx-3\\.5",
scroll_mx_4: "scroll-mx-4",
scroll_mx_40: "scroll-mx-40",
scroll_mx_44: "scroll-mx-44",
scroll_mx_48: "scroll-mx-48",
scroll_mx_5: "scroll-mx-5",
scroll_mx_52: "scroll-mx-52",
scroll_mx_56: "scroll-mx-56",
scroll_mx_6: "scroll-mx-6",
scroll_mx_60: "scroll-mx-60",
scroll_mx_64: "scroll-mx-64",
scroll_mx_7: "scroll-mx-7",
scroll_mx_72: "scroll-mx-72",
scroll_mx_8: "scroll-mx-8",
scroll_mx_80: "scroll-mx-80",
scroll_mx_9: "scroll-mx-9",
scroll_mx_96: "scroll-mx-96",
scroll_mx_px: "scroll-mx-px",
scroll_my_0: "scroll-my-0",
scroll_my_0_p_5: "scroll-my-0\\.5",
scroll_my_1: "scroll-my-1",
scroll_my_10: "scroll-my-10",
scroll_my_11: "scroll-my-11",
scroll_my_12: "scroll-my-12",
scroll_my_14: "scroll-my-14",
scroll_my_16: "scroll-my-16",
scroll_my_1_p_5: "scroll-my-1\\.5",
scroll_my_2: "scroll-my-2",
scroll_my_20: "scroll-my-20",
scroll_my_24: "scroll-my-24",
scroll_my_28: "scroll-my-28",
scroll_my_2_p_5: "scroll-my-2\\.5",
scroll_my_3: "scroll-my-3",
scroll_my_32: "scroll-my-32",
scroll_my_36: "scroll-my-36",
scroll_my_3_p_5: "scroll-my-3\\.5",
scroll_my_4: "scroll-my-4",
scroll_my_40: "scroll-my-40",
scroll_my_44: "scroll-my-44",
scroll_my_48: "scroll-my-48",
scroll_my_5: "scroll-my-5",
scroll_my_52: "scroll-my-52",
scroll_my_56: "scroll-my-56",
scroll_my_6: "scroll-my-6",
scroll_my_60: "scroll-my-60",
scroll_my_64: "scroll-my-64",
scroll_my_7: "scroll-my-7",
scroll_my_72: "scroll-my-72",
scroll_my_8: "scroll-my-8",
scroll_my_80: "scroll-my-80",
scroll_my_9: "scroll-my-9",
scroll_my_96: "scroll-my-96",
scroll_my_px: "scroll-my-px",
scroll_p_0: "scroll-p-0",
scroll_p_0_p_5: "scroll-p-0\\.5",
scroll_p_1: "scroll-p-1",
scroll_p_10: "scroll-p-10",
scroll_p_11: "scroll-p-11",
scroll_p_12: "scroll-p-12",
scroll_p_14: "scroll-p-14",
scroll_p_16: "scroll-p-16",
scroll_p_1_p_5: "scroll-p-1\\.5",
scroll_p_2: "scroll-p-2",
scroll_p_20: "scroll-p-20",
scroll_p_24: "scroll-p-24",
scroll_p_28: "scroll-p-28",
scroll_p_2_p_5: "scroll-p-2\\.5",
scroll_p_3: "scroll-p-3",
scroll_p_32: "scroll-p-32",
scroll_p_36: "scroll-p-36",
scroll_p_3_p_5: "scroll-p-3\\.5",
scroll_p_4: "scroll-p-4",
scroll_p_40: "scroll-p-40",
scroll_p_44: "scroll-p-44",
scroll_p_48: "scroll-p-48",
scroll_p_5: "scroll-p-5",
scroll_p_52: "scroll-p-52",
scroll_p_56: "scroll-p-56",
scroll_p_6: "scroll-p-6",
scroll_p_60: "scroll-p-60",
scroll_p_64: "scroll-p-64",
scroll_p_7: "scroll-p-7",
scroll_p_72: "scroll-p-72",
scroll_p_8: "scroll-p-8",
scroll_p_80: "scroll-p-80",
scroll_p_9: "scroll-p-9",
scroll_p_96: "scroll-p-96",
scroll_p_px: "scroll-p-px",
scroll_pb_0: "scroll-pb-0",
scroll_pb_0_p_5: "scroll-pb-0\\.5",
scroll_pb_1: "scroll-pb-1",
scroll_pb_10: "scroll-pb-10",
scroll_pb_11: "scroll-pb-11",
scroll_pb_12: "scroll-pb-12",
scroll_pb_14: "scroll-pb-14",
scroll_pb_16: "scroll-pb-16",
scroll_pb_1_p_5: "scroll-pb-1\\.5",
scroll_pb_2: "scroll-pb-2",
scroll_pb_20: "scroll-pb-20",
scroll_pb_24: "scroll-pb-24",
scroll_pb_28: "scroll-pb-28",
scroll_pb_2_p_5: "scroll-pb-2\\.5",
scroll_pb_3: "scroll-pb-3",
scroll_pb_32: "scroll-pb-32",
scroll_pb_36: "scroll-pb-36",
scroll_pb_3_p_5: "scroll-pb-3\\.5",
scroll_pb_4: "scroll-pb-4",
scroll_pb_40: "scroll-pb-40",
scroll_pb_44: "scroll-pb-44",
scroll_pb_48: "scroll-pb-48",
scroll_pb_5: "scroll-pb-5",
scroll_pb_52: "scroll-pb-52",
scroll_pb_56: "scroll-pb-56",
scroll_pb_6: "scroll-pb-6",
scroll_pb_60: "scroll-pb-60",
scroll_pb_64: "scroll-pb-64",
scroll_pb_7: "scroll-pb-7",
scroll_pb_72: "scroll-pb-72",
scroll_pb_8: "scroll-pb-8",
scroll_pb_80: "scroll-pb-80",
scroll_pb_9: "scroll-pb-9",
scroll_pb_96: "scroll-pb-96",
scroll_pb_px: "scroll-pb-px",
scroll_pl_0: "scroll-pl-0",
scroll_pl_0_p_5: "scroll-pl-0\\.5",
scroll_pl_1: "scroll-pl-1",
scroll_pl_10: "scroll-pl-10",
scroll_pl_11: "scroll-pl-11",
scroll_pl_12: "scroll-pl-12",
scroll_pl_14: "scroll-pl-14",
scroll_pl_16: "scroll-pl-16",
scroll_pl_1_p_5: "scroll-pl-1\\.5",
scroll_pl_2: "scroll-pl-2",
scroll_pl_20: "scroll-pl-20",
scroll_pl_24: "scroll-pl-24",
scroll_pl_28: "scroll-pl-28",
scroll_pl_2_p_5: "scroll-pl-2\\.5",
scroll_pl_3: "scroll-pl-3",
scroll_pl_32: "scroll-pl-32",
scroll_pl_36: "scroll-pl-36",
scroll_pl_3_p_5: "scroll-pl-3\\.5",
scroll_pl_4: "scroll-pl-4",
scroll_pl_40: "scroll-pl-40",
scroll_pl_44: "scroll-pl-44",
scroll_pl_48: "scroll-pl-48",
scroll_pl_5: "scroll-pl-5",
scroll_pl_52: "scroll-pl-52",
scroll_pl_56: "scroll-pl-56",
scroll_pl_6: "scroll-pl-6",
scroll_pl_60: "scroll-pl-60",
scroll_pl_64: "scroll-pl-64",
scroll_pl_7: "scroll-pl-7",
scroll_pl_72: "scroll-pl-72",
scroll_pl_8: "scroll-pl-8",
scroll_pl_80: "scroll-pl-80",
scroll_pl_9: "scroll-pl-9",
scroll_pl_96: "scroll-pl-96",
scroll_pl_px: "scroll-pl-px",
scroll_pr_0: "scroll-pr-0",
scroll_pr_0_p_5: "scroll-pr-0\\.5",
scroll_pr_1: "scroll-pr-1",
scroll_pr_10: "scroll-pr-10",
scroll_pr_11: "scroll-pr-11",
scroll_pr_12: "scroll-pr-12",
scroll_pr_14: "scroll-pr-14",
scroll_pr_16: "scroll-pr-16",
scroll_pr_1_p_5: "scroll-pr-1\\.5",
scroll_pr_2: "scroll-pr-2",
scroll_pr_20: "scroll-pr-20",
scroll_pr_24: "scroll-pr-24",
scroll_pr_28: "scroll-pr-28",
scroll_pr_2_p_5: "scroll-pr-2\\.5",
scroll_pr_3: "scroll-pr-3",
scroll_pr_32: "scroll-pr-32",
scroll_pr_36: "scroll-pr-36",
scroll_pr_3_p_5: "scroll-pr-3\\.5",
scroll_pr_4: "scroll-pr-4",
scroll_pr_40: "scroll-pr-40",
scroll_pr_44: "scroll-pr-44",
scroll_pr_48: "scroll-pr-48",
scroll_pr_5: "scroll-pr-5",
scroll_pr_52: "scroll-pr-52",
scroll_pr_56: "scroll-pr-56",
scroll_pr_6: "scroll-pr-6",
scroll_pr_60: "scroll-pr-60",
scroll_pr_64: "scroll-pr-64",
scroll_pr_7: "scroll-pr-7",
scroll_pr_72: "scroll-pr-72",
scroll_pr_8: "scroll-pr-8",
scroll_pr_80: "scroll-pr-80",
scroll_pr_9: "scroll-pr-9",
scroll_pr_96: "scroll-pr-96",
scroll_pr_px: "scroll-pr-px",
scroll_pt_0: "scroll-pt-0",
scroll_pt_0_p_5: "scroll-pt-0\\.5",
scroll_pt_1: "scroll-pt-1",
scroll_pt_10: "scroll-pt-10",
scroll_pt_11: "scroll-pt-11",
scroll_pt_12: "scroll-pt-12",
scroll_pt_14: "scroll-pt-14",
scroll_pt_16: "scroll-pt-16",
scroll_pt_1_p_5: "scroll-pt-1\\.5",
scroll_pt_2: "scroll-pt-2",
scroll_pt_20: "scroll-pt-20",
scroll_pt_24: "scroll-pt-24",
scroll_pt_28: "scroll-pt-28",
scroll_pt_2_p_5: "scroll-pt-2\\.5",
scroll_pt_3: "scroll-pt-3",
scroll_pt_32: "scroll-pt-32",
scroll_pt_36: "scroll-pt-36",
scroll_pt_3_p_5: "scroll-pt-3\\.5",
scroll_pt_4: "scroll-pt-4",
scroll_pt_40: "scroll-pt-40",
scroll_pt_44: "scroll-pt-44",
scroll_pt_48: "scroll-pt-48",
scroll_pt_5: "scroll-pt-5",
scroll_pt_52: "scroll-pt-52",
scroll_pt_56: "scroll-pt-56",
scroll_pt_6: "scroll-pt-6",
scroll_pt_60: "scroll-pt-60",
scroll_pt_64: "scroll-pt-64",
scroll_pt_7: "scroll-pt-7",
scroll_pt_72: "scroll-pt-72",
scroll_pt_8: "scroll-pt-8",
scroll_pt_80: "scroll-pt-80",
scroll_pt_9: "scroll-pt-9",
scroll_pt_96: "scroll-pt-96",
scroll_pt_px: "scroll-pt-px",
scroll_px_0: "scroll-px-0",
scroll_px_0_p_5: "scroll-px-0\\.5",
scroll_px_1: "scroll-px-1",
scroll_px_10: "scroll-px-10",
scroll_px_11: "scroll-px-11",
scroll_px_12: "scroll-px-12",
scroll_px_14: "scroll-px-14",
scroll_px_16: "scroll-px-16",
scroll_px_1_p_5: "scroll-px-1\\.5",
scroll_px_2: "scroll-px-2",
scroll_px_20: "scroll-px-20",
scroll_px_24: "scroll-px-24",
scroll_px_28: "scroll-px-28",
scroll_px_2_p_5: "scroll-px-2\\.5",
scroll_px_3: "scroll-px-3",
scroll_px_32: "scroll-px-32",
scroll_px_36: "scroll-px-36",
scroll_px_3_p_5: "scroll-px-3\\.5",
scroll_px_4: "scroll-px-4",
scroll_px_40: "scroll-px-40",
scroll_px_44: "scroll-px-44",
scroll_px_48: "scroll-px-48",
scroll_px_5: "scroll-px-5",
scroll_px_52: "scroll-px-52",
scroll_px_56: "scroll-px-56",
scroll_px_6: "scroll-px-6",
scroll_px_60: "scroll-px-60",
scroll_px_64: "scroll-px-64",
scroll_px_7: "scroll-px-7",
scroll_px_72: "scroll-px-72",
scroll_px_8: "scroll-px-8",
scroll_px_80: "scroll-px-80",
scroll_px_9: "scroll-px-9",
scroll_px_96: "scroll-px-96",
scroll_px_px: "scroll-px-px",
scroll_py_0: "scroll-py-0",
scroll_py_0_p_5: "scroll-py-0\\.5",
scroll_py_1: "scroll-py-1",
scroll_py_10: "scroll-py-10",
scroll_py_11: "scroll-py-11",
scroll_py_12: "scroll-py-12",
scroll_py_14: "scroll-py-14",
scroll_py_16: "scroll-py-16",
scroll_py_1_p_5: "scroll-py-1\\.5",
scroll_py_2: "scroll-py-2",
scroll_py_20: "scroll-py-20",
scroll_py_24: "scroll-py-24",
scroll_py_28: "scroll-py-28",
scroll_py_2_p_5: "scroll-py-2\\.5",
scroll_py_3: "scroll-py-3",
scroll_py_32: "scroll-py-32",
scroll_py_36: "scroll-py-36",
scroll_py_3_p_5: "scroll-py-3\\.5",
scroll_py_4: "scroll-py-4",
scroll_py_40: "scroll-py-40",
scroll_py_44: "scroll-py-44",
scroll_py_48: "scroll-py-48",
scroll_py_5: "scroll-py-5",
scroll_py_52: "scroll-py-52",
scroll_py_56: "scroll-py-56",
scroll_py_6: "scroll-py-6",
scroll_py_60: "scroll-py-60",
scroll_py_64: "scroll-py-64",
scroll_py_7: "scroll-py-7",
scroll_py_72: "scroll-py-72",
scroll_py_8: "scroll-py-8",
scroll_py_80: "scroll-py-80",
scroll_py_9: "scroll-py-9",
scroll_py_96: "scroll-py-96",
scroll_py_px: "scroll-py-px",
scroll_smooth: "scroll-smooth",
select_all: "select-all",
select_auto: "select-auto",
select_none: "select-none",
select_text: "select-text",
snap_align_none: "snap-align-none",
snap_always: "snap-always",
snap_both: "snap-both",
snap_center: "snap-center",
snap_end: "snap-end",
snap_mandatory: "snap-mandatory",
snap_none: "snap-none",
snap_normal: "snap-normal",
snap_proximity: "snap-proximity",
snap_start: "snap-start",
snap_x: "snap-x",
snap_y: "snap-y",
touch_auto: "touch-auto",
touch_manipulation: "touch-manipulation",
touch_none: "touch-none",
touch_pan_down: "touch-pan-down",
touch_pan_left: "touch-pan-left",
touch_pan_right: "touch-pan-right",
touch_pan_up: "touch-pan-up",
touch_pan_x: "touch-pan-x",
touch_pan_y: "touch-pan-y",
touch_pinch_zoom: "touch-pinch-zoom",
will_change_auto: "will-change-auto",
will_change_contents: "will-change-contents",
will_change_scroll: "will-change-scroll",
will_change_transform: "will-change-transform",
};
pub static LAYOUT: Layout = Layout {
absolute: "absolute",
aspect_auto: "aspect-auto",
aspect_square: "aspect-square",
aspect_video: "aspect-video",
block: "block",
bottom_0: "bottom-0",
bottom_0_p_5: "bottom-0\\.5",
bottom_1: "bottom-1",
bottom_10: "bottom-10",
bottom_11: "bottom-11",
bottom_12: "bottom-12",
bottom_14: "bottom-14",
bottom_16: "bottom-16",
bottom_1_of_2: "bottom-1\\/2",
bottom_1_of_3: "bottom-1\\/3",
bottom_1_of_4: "bottom-1\\/4",
bottom_1_p_5: "bottom-1\\.5",
bottom_2: "bottom-2",
bottom_20: "bottom-20",
bottom_24: "bottom-24",
bottom_28: "bottom-28",
bottom_2_of_3: "bottom-2\\/3",
bottom_2_of_4: "bottom-2\\/4",
bottom_2_p_5: "bottom-2\\.5",
bottom_3: "bottom-3",
bottom_32: "bottom-32",
bottom_36: "bottom-36",
bottom_3_of_4: "bottom-3\\/4",
bottom_3_p_5: "bottom-3\\.5",
bottom_4: "bottom-4",
bottom_40: "bottom-40",
bottom_44: "bottom-44",
bottom_48: "bottom-48",
bottom_5: "bottom-5",
bottom_52: "bottom-52",
bottom_56: "bottom-56",
bottom_6: "bottom-6",
bottom_60: "bottom-60",
bottom_64: "bottom-64",
bottom_7: "bottom-7",
bottom_72: "bottom-72",
bottom_8: "bottom-8",
bottom_80: "bottom-80",
bottom_9: "bottom-9",
bottom_96: "bottom-96",
bottom_auto: "bottom-auto",
bottom_full: "bottom-full",
bottom_px: "bottom-px",
box_border: "box-border",
box_content: "box-content",
box_decoration_clone: "box-decoration-clone",
box_decoration_slice: "box-decoration-slice",
break_after_all: "break-after-all",
break_after_auto: "break-after-auto",
break_after_avoid: "break-after-avoid",
break_after_avoid_page: "break-after-avoid-page",
break_after_column: "break-after-column",
break_after_left: "break-after-left",
break_after_page: "break-after-page",
break_after_right: "break-after-right",
break_before_all: "break-before-all",
break_before_auto: "break-before-auto",
break_before_avoid: "break-before-avoid",
break_before_avoid_page: "break-before-avoid-page",
break_before_column: "break-before-column",
break_before_left: "break-before-left",
break_before_page: "break-before-page",
break_before_right: "break-before-right",
break_inside_auto: "break-inside-auto",
break_inside_avoid: "break-inside-avoid",
break_inside_avoid_column: "break-inside-avoid-column",
break_inside_avoid_page: "break-inside-avoid-page",
clear_both: "clear-both",
clear_left: "clear-left",
clear_none: "clear-none",
clear_right: "clear-right",
columns_1: "columns-1",
columns_10: "columns-10",
columns_11: "columns-11",
columns_12: "columns-12",
columns_2: "columns-2",
columns_2xl: "columns-2xl",
columns_2xs: "columns-2xs",
columns_3: "columns-3",
columns_3xl: "columns-3xl",
columns_3xs: "columns-3xs",
columns_4: "columns-4",
columns_4xl: "columns-4xl",
columns_5: "columns-5",
columns_5xl: "columns-5xl",
columns_6: "columns-6",
columns_6xl: "columns-6xl",
columns_7: "columns-7",
columns_7xl: "columns-7xl",
columns_8: "columns-8",
columns_9: "columns-9",
columns_auto: "columns-auto",
columns_lg: "columns-lg",
columns_md: "columns-md",
columns_sm: "columns-sm",
columns_xl: "columns-xl",
columns_xs: "columns-xs",
container: "container",
contents: "contents",
decoration_clone: "decoration-clone",
decoration_slice: "decoration-slice",
fixed: "fixed",
flex: "flex",
float_left: "float-left",
float_none: "float-none",
float_right: "float-right",
flow_root: "flow-root",
grid: "grid",
hidden: "hidden",
inline: "inline",
inline_block: "inline-block",
inline_flex: "inline-flex",
inline_grid: "inline-grid",
inline_table: "inline-table",
inset_0: "inset-0",
inset_0_p_5: "inset-0\\.5",
inset_1: "inset-1",
inset_10: "inset-10",
inset_11: "inset-11",
inset_12: "inset-12",
inset_14: "inset-14",
inset_16: "inset-16",
inset_1_of_2: "inset-1\\/2",
inset_1_of_3: "inset-1\\/3",
inset_1_of_4: "inset-1\\/4",
inset_1_p_5: "inset-1\\.5",
inset_2: "inset-2",
inset_20: "inset-20",
inset_24: "inset-24",
inset_28: "inset-28",
inset_2_of_3: "inset-2\\/3",
inset_2_of_4: "inset-2\\/4",
inset_2_p_5: "inset-2\\.5",
inset_3: "inset-3",
inset_32: "inset-32",
inset_36: "inset-36",
inset_3_of_4: "inset-3\\/4",
inset_3_p_5: "inset-3\\.5",
inset_4: "inset-4",
inset_40: "inset-40",
inset_44: "inset-44",
inset_48: "inset-48",
inset_5: "inset-5",
inset_52: "inset-52",
inset_56: "inset-56",
inset_6: "inset-6",
inset_60: "inset-60",
inset_64: "inset-64",
inset_7: "inset-7",
inset_72: "inset-72",
inset_8: "inset-8",
inset_80: "inset-80",
inset_9: "inset-9",
inset_96: "inset-96",
inset_auto: "inset-auto",
inset_full: "inset-full",
inset_px: "inset-px",
inset_x_0: "inset-x-0",
inset_x_0_p_5: "inset-x-0\\.5",
inset_x_1: "inset-x-1",
inset_x_10: "inset-x-10",
inset_x_11: "inset-x-11",
inset_x_12: "inset-x-12",
inset_x_14: "inset-x-14",
inset_x_16: "inset-x-16",
inset_x_1_of_2: "inset-x-1\\/2",
inset_x_1_of_3: "inset-x-1\\/3",
inset_x_1_of_4: "inset-x-1\\/4",
inset_x_1_p_5: "inset-x-1\\.5",
inset_x_2: "inset-x-2",
inset_x_20: "inset-x-20",
inset_x_24: "inset-x-24",
inset_x_28: "inset-x-28",
inset_x_2_of_3: "inset-x-2\\/3",
inset_x_2_of_4: "inset-x-2\\/4",
inset_x_2_p_5: "inset-x-2\\.5",
inset_x_3: "inset-x-3",
inset_x_32: "inset-x-32",
inset_x_36: "inset-x-36",
inset_x_3_of_4: "inset-x-3\\/4",
inset_x_3_p_5: "inset-x-3\\.5",
inset_x_4: "inset-x-4",
inset_x_40: "inset-x-40",
inset_x_44: "inset-x-44",
inset_x_48: "inset-x-48",
inset_x_5: "inset-x-5",
inset_x_52: "inset-x-52",
inset_x_56: "inset-x-56",
inset_x_6: "inset-x-6",
inset_x_60: "inset-x-60",
inset_x_64: "inset-x-64",
inset_x_7: "inset-x-7",
inset_x_72: "inset-x-72",
inset_x_8: "inset-x-8",
inset_x_80: "inset-x-80",
inset_x_9: "inset-x-9",
inset_x_96: "inset-x-96",
inset_x_auto: "inset-x-auto",
inset_x_full: "inset-x-full",
inset_x_px: "inset-x-px",
inset_y_0: "inset-y-0",
inset_y_0_p_5: "inset-y-0\\.5",
inset_y_1: "inset-y-1",
inset_y_10: "inset-y-10",
inset_y_11: "inset-y-11",
inset_y_12: "inset-y-12",
inset_y_14: "inset-y-14",
inset_y_16: "inset-y-16",
inset_y_1_of_2: "inset-y-1\\/2",
inset_y_1_of_3: "inset-y-1\\/3",
inset_y_1_of_4: "inset-y-1\\/4",
inset_y_1_p_5: "inset-y-1\\.5",
inset_y_2: "inset-y-2",
inset_y_20: "inset-y-20",
inset_y_24: "inset-y-24",
inset_y_28: "inset-y-28",
inset_y_2_of_3: "inset-y-2\\/3",
inset_y_2_of_4: "inset-y-2\\/4",
inset_y_2_p_5: "inset-y-2\\.5",
inset_y_3: "inset-y-3",
inset_y_32: "inset-y-32",
inset_y_36: "inset-y-36",
inset_y_3_of_4: "inset-y-3\\/4",
inset_y_3_p_5: "inset-y-3\\.5",
inset_y_4: "inset-y-4",
inset_y_40: "inset-y-40",
inset_y_44: "inset-y-44",
inset_y_48: "inset-y-48",
inset_y_5: "inset-y-5",
inset_y_52: "inset-y-52",
inset_y_56: "inset-y-56",
inset_y_6: "inset-y-6",
inset_y_60: "inset-y-60",
inset_y_64: "inset-y-64",
inset_y_7: "inset-y-7",
inset_y_72: "inset-y-72",
inset_y_8: "inset-y-8",
inset_y_80: "inset-y-80",
inset_y_9: "inset-y-9",
inset_y_96: "inset-y-96",
inset_y_auto: "inset-y-auto",
inset_y_full: "inset-y-full",
inset_y_px: "inset-y-px",
invisible: "invisible",
isolate: "isolate",
isolation_auto: "isolation-auto",
left_0: "left-0",
left_0_p_5: "left-0\\.5",
left_1: "left-1",
left_10: "left-10",
left_11: "left-11",
left_12: "left-12",
left_14: "left-14",
left_16: "left-16",
left_1_of_2: "left-1\\/2",
left_1_of_3: "left-1\\/3",
left_1_of_4: "left-1\\/4",
left_1_p_5: "left-1\\.5",
left_2: "left-2",
left_20: "left-20",
left_24: "left-24",
left_28: "left-28",
left_2_of_3: "left-2\\/3",
left_2_of_4: "left-2\\/4",
left_2_p_5: "left-2\\.5",
left_3: "left-3",
left_32: "left-32",
left_36: "left-36",
left_3_of_4: "left-3\\/4",
left_3_p_5: "left-3\\.5",
left_4: "left-4",
left_40: "left-40",
left_44: "left-44",
left_48: "left-48",
left_5: "left-5",
left_52: "left-52",
left_56: "left-56",
left_6: "left-6",
left_60: "left-60",
left_64: "left-64",
left_7: "left-7",
left_72: "left-72",
left_8: "left-8",
left_80: "left-80",
left_9: "left-9",
left_96: "left-96",
left_auto: "left-auto",
left_full: "left-full",
left_px: "left-px",
list_item: "list-item",
object_bottom: "object-bottom",
object_center: "object-center",
object_contain: "object-contain",
object_cover: "object-cover",
object_fill: "object-fill",
object_left: "object-left",
object_left_bottom: "object-left-bottom",
object_left_top: "object-left-top",
object_none: "object-none",
object_right: "object-right",
object_right_bottom: "object-right-bottom",
object_right_top: "object-right-top",
object_scale_down: "object-scale-down",
object_top: "object-top",
overflow_auto: "overflow-auto",
overflow_clip: "overflow-clip",
overflow_ellipsis: "overflow-ellipsis",
overflow_hidden: "overflow-hidden",
overflow_scroll: "overflow-scroll",
overflow_visible: "overflow-visible",
overflow_x_auto: "overflow-x-auto",
overflow_x_clip: "overflow-x-clip",
overflow_x_hidden: "overflow-x-hidden",
overflow_x_scroll: "overflow-x-scroll",
overflow_x_visible: "overflow-x-visible",
overflow_y_auto: "overflow-y-auto",
overflow_y_clip: "overflow-y-clip",
overflow_y_hidden: "overflow-y-hidden",
overflow_y_scroll: "overflow-y-scroll",
overflow_y_visible: "overflow-y-visible",
overscroll_auto: "overscroll-auto",
overscroll_contain: "overscroll-contain",
overscroll_none: "overscroll-none",
overscroll_x_auto: "overscroll-x-auto",
overscroll_x_contain: "overscroll-x-contain",
overscroll_x_none: "overscroll-x-none",
overscroll_y_auto: "overscroll-y-auto",
overscroll_y_contain: "overscroll-y-contain",
overscroll_y_none: "overscroll-y-none",
relative: "relative",
right_0: "right-0",
right_0_p_5: "right-0\\.5",
right_1: "right-1",
right_10: "right-10",
right_11: "right-11",
right_12: "right-12",
right_14: "right-14",
right_16: "right-16",
right_1_of_2: "right-1\\/2",
right_1_of_3: "right-1\\/3",
right_1_of_4: "right-1\\/4",
right_1_p_5: "right-1\\.5",
right_2: "right-2",
right_20: "right-20",
right_24: "right-24",
right_28: "right-28",
right_2_of_3: "right-2\\/3",
right_2_of_4: "right-2\\/4",
right_2_p_5: "right-2\\.5",
right_3: "right-3",
right_32: "right-32",
right_36: "right-36",
right_3_of_4: "right-3\\/4",
right_3_p_5: "right-3\\.5",
right_4: "right-4",
right_40: "right-40",
right_44: "right-44",
right_48: "right-48",
right_5: "right-5",
right_52: "right-52",
right_56: "right-56",
right_6: "right-6",
right_60: "right-60",
right_64: "right-64",
right_7: "right-7",
right_72: "right-72",
right_8: "right-8",
right_80: "right-80",
right_9: "right-9",
right_96: "right-96",
right_auto: "right-auto",
right_full: "right-full",
right_px: "right-px",
r#static: "static",
sticky: "sticky",
table: "table",
table_caption: "table-caption",
table_cell: "table-cell",
table_column: "table-column",
table_column_group: "table-column-group",
table_footer_group: "table-footer-group",
table_header_group: "table-header-group",
table_row: "table-row",
table_row_group: "table-row-group",
top_0: "top-0",
top_0_p_5: "top-0\\.5",
top_1: "top-1",
top_10: "top-10",
top_11: "top-11",
top_12: "top-12",
top_14: "top-14",
top_16: "top-16",
top_1_of_2: "top-1\\/2",
top_1_of_3: "top-1\\/3",
top_1_of_4: "top-1\\/4",
top_1_p_5: "top-1\\.5",
top_2: "top-2",
top_20: "top-20",
top_24: "top-24",
top_28: "top-28",
top_2_of_3: "top-2\\/3",
top_2_of_4: "top-2\\/4",
top_2_p_5: "top-2\\.5",
top_3: "top-3",
top_32: "top-32",
top_36: "top-36",
top_3_of_4: "top-3\\/4",
top_3_p_5: "top-3\\.5",
top_4: "top-4",
top_40: "top-40",
top_44: "top-44",
top_48: "top-48",
top_5: "top-5",
top_52: "top-52",
top_56: "top-56",
top_6: "top-6",
top_60: "top-60",
top_64: "top-64",
top_7: "top-7",
top_72: "top-72",
top_8: "top-8",
top_80: "top-80",
top_9: "top-9",
top_96: "top-96",
top_auto: "top-auto",
top_full: "top-full",
top_px: "top-px",
visible: "visible",
z_0: "z-0",
z_10: "z-10",
z_20: "z-20",
z_30: "z-30",
z_40: "z-40",
z_50: "z-50",
z_auto: "z-auto",
};
pub static LINE_CLAMP: LineClamp = LineClamp {
line_clamp_1: "line-clamp-1",
line_clamp_2: "line-clamp-2",
line_clamp_3: "line-clamp-3",
line_clamp_4: "line-clamp-4",
line_clamp_5: "line-clamp-5",
line_clamp_6: "line-clamp-6",
line_clamp_none: "line-clamp-none",
};
pub static PROSE: Prose = Prose {
prose: "prose",
prose_2xl: "prose-2xl",
prose_amber: "prose-amber",
prose_base: "prose-base",
prose_blue: "prose-blue",
prose_cyan: "prose-cyan",
prose_emerald: "prose-emerald",
prose_fuchsia: "prose-fuchsia",
prose_gray: "prose-gray",
prose_green: "prose-green",
prose_indigo: "prose-indigo",
prose_invert: "prose-invert",
prose_lg: "prose-lg",
prose_lime: "prose-lime",
prose_neutral: "prose-neutral",
prose_orange: "prose-orange",
prose_pink: "prose-pink",
prose_purple: "prose-purple",
prose_red: "prose-red",
prose_rose: "prose-rose",
prose_sky: "prose-sky",
prose_slate: "prose-slate",
prose_sm: "prose-sm",
prose_stone: "prose-stone",
prose_teal: "prose-teal",
prose_violet: "prose-violet",
prose_xl: "prose-xl",
prose_yellow: "prose-yellow",
prose_zinc: "prose-zinc",
};
pub static SIZING: Sizing = Sizing {
h_0: "h-0",
h_0_p_5: "h-0\\.5",
h_1: "h-1",
h_10: "h-10",
h_11: "h-11",
h_12: "h-12",
h_14: "h-14",
h_16: "h-16",
h_1_of_2: "h-1\\/2",
h_1_of_3: "h-1\\/3",
h_1_of_4: "h-1\\/4",
h_1_of_5: "h-1\\/5",
h_1_of_6: "h-1\\/6",
h_1_p_5: "h-1\\.5",
h_2: "h-2",
h_20: "h-20",
h_24: "h-24",
h_28: "h-28",
h_2_of_3: "h-2\\/3",
h_2_of_4: "h-2\\/4",
h_2_of_5: "h-2\\/5",
h_2_of_6: "h-2\\/6",
h_2_p_5: "h-2\\.5",
h_3: "h-3",
h_32: "h-32",
h_36: "h-36",
h_3_of_4: "h-3\\/4",
h_3_of_5: "h-3\\/5",
h_3_of_6: "h-3\\/6",
h_3_p_5: "h-3\\.5",
h_4: "h-4",
h_40: "h-40",
h_44: "h-44",
h_48: "h-48",
h_4_of_5: "h-4\\/5",
h_4_of_6: "h-4\\/6",
h_5: "h-5",
h_52: "h-52",
h_56: "h-56",
h_5_of_6: "h-5\\/6",
h_6: "h-6",
h_60: "h-60",
h_64: "h-64",
h_7: "h-7",
h_72: "h-72",
h_8: "h-8",
h_80: "h-80",
h_9: "h-9",
h_96: "h-96",
h_auto: "h-auto",
h_fit: "h-fit",
h_full: "h-full",
h_max: "h-max",
h_min: "h-min",
h_px: "h-px",
h_screen: "h-screen",
max_h_0: "max-h-0",
max_h_0_p_5: "max-h-0\\.5",
max_h_1: "max-h-1",
max_h_10: "max-h-10",
max_h_11: "max-h-11",
max_h_12: "max-h-12",
max_h_14: "max-h-14",
max_h_16: "max-h-16",
max_h_1_p_5: "max-h-1\\.5",
max_h_2: "max-h-2",
max_h_20: "max-h-20",
max_h_24: "max-h-24",
max_h_28: "max-h-28",
max_h_2_p_5: "max-h-2\\.5",
max_h_3: "max-h-3",
max_h_32: "max-h-32",
max_h_36: "max-h-36",
max_h_3_p_5: "max-h-3\\.5",
max_h_4: "max-h-4",
max_h_40: "max-h-40",
max_h_44: "max-h-44",
max_h_48: "max-h-48",
max_h_5: "max-h-5",
max_h_52: "max-h-52",
max_h_56: "max-h-56",
max_h_6: "max-h-6",
max_h_60: "max-h-60",
max_h_64: "max-h-64",
max_h_7: "max-h-7",
max_h_72: "max-h-72",
max_h_8: "max-h-8",
max_h_80: "max-h-80",
max_h_9: "max-h-9",
max_h_96: "max-h-96",
max_h_fit: "max-h-fit",
max_h_full: "max-h-full",
max_h_max: "max-h-max",
max_h_min: "max-h-min",
max_h_px: "max-h-px",
max_h_screen: "max-h-screen",
max_w_0: "max-w-0",
max_w_2xl: "max-w-2xl",
max_w_3xl: "max-w-3xl",
max_w_4xl: "max-w-4xl",
max_w_5xl: "max-w-5xl",
max_w_6xl: "max-w-6xl",
max_w_7xl: "max-w-7xl",
max_w_fit: "max-w-fit",
max_w_full: "max-w-full",
max_w_lg: "max-w-lg",
max_w_max: "max-w-max",
max_w_md: "max-w-md",
max_w_min: "max-w-min",
max_w_none: "max-w-none",
max_w_prose: "max-w-prose",
max_w_screen_2xl: "max-w-screen-2xl",
max_w_screen_lg: "max-w-screen-lg",
max_w_screen_md: "max-w-screen-md",
max_w_screen_sm: "max-w-screen-sm",
max_w_screen_xl: "max-w-screen-xl",
max_w_sm: "max-w-sm",
max_w_xl: "max-w-xl",
max_w_xs: "max-w-xs",
min_h_0: "min-h-0",
min_h_fit: "min-h-fit",
min_h_full: "min-h-full",
min_h_max: "min-h-max",
min_h_min: "min-h-min",
min_h_screen: "min-h-screen",
min_w_0: "min-w-0",
min_w_fit: "min-w-fit",
min_w_full: "min-w-full",
min_w_max: "min-w-max",
min_w_min: "min-w-min",
w_0: "w-0",
w_0_p_5: "w-0\\.5",
w_1: "w-1",
w_10: "w-10",
w_10_of_12: "w-10\\/12",
w_11: "w-11",
w_11_of_12: "w-11\\/12",
w_12: "w-12",
w_14: "w-14",
w_16: "w-16",
w_1_of_12: "w-1\\/12",
w_1_of_2: "w-1\\/2",
w_1_of_3: "w-1\\/3",
w_1_of_4: "w-1\\/4",
w_1_of_5: "w-1\\/5",
w_1_of_6: "w-1\\/6",
w_1_p_5: "w-1\\.5",
w_2: "w-2",
w_20: "w-20",
w_24: "w-24",
w_28: "w-28",
w_2_of_12: "w-2\\/12",
w_2_of_3: "w-2\\/3",
w_2_of_4: "w-2\\/4",
w_2_of_5: "w-2\\/5",
w_2_of_6: "w-2\\/6",
w_2_p_5: "w-2\\.5",
w_3: "w-3",
w_32: "w-32",
w_36: "w-36",
w_3_of_12: "w-3\\/12",
w_3_of_4: "w-3\\/4",
w_3_of_5: "w-3\\/5",
w_3_of_6: "w-3\\/6",
w_3_p_5: "w-3\\.5",
w_4: "w-4",
w_40: "w-40",
w_44: "w-44",
w_48: "w-48",
w_4_of_12: "w-4\\/12",
w_4_of_5: "w-4\\/5",
w_4_of_6: "w-4\\/6",
w_5: "w-5",
w_52: "w-52",
w_56: "w-56",
w_5_of_12: "w-5\\/12",
w_5_of_6: "w-5\\/6",
w_6: "w-6",
w_60: "w-60",
w_64: "w-64",
w_6_of_12: "w-6\\/12",
w_7: "w-7",
w_72: "w-72",
w_7_of_12: "w-7\\/12",
w_8: "w-8",
w_80: "w-80",
w_8_of_12: "w-8\\/12",
w_9: "w-9",
w_96: "w-96",
w_9_of_12: "w-9\\/12",
w_auto: "w-auto",
w_fit: "w-fit",
w_full: "w-full",
w_max: "w-max",
w_min: "w-min",
w_px: "w-px",
w_screen: "w-screen",
};
pub static SPACING: Spacing = Spacing {
m_0: "m-0",
m_0_p_5: "m-0\\.5",
m_1: "m-1",
m_10: "m-10",
m_11: "m-11",
m_12: "m-12",
m_14: "m-14",
m_16: "m-16",
m_1_p_5: "m-1\\.5",
m_2: "m-2",
m_20: "m-20",
m_24: "m-24",
m_28: "m-28",
m_2_p_5: "m-2\\.5",
m_3: "m-3",
m_32: "m-32",
m_36: "m-36",
m_3_p_5: "m-3\\.5",
m_4: "m-4",
m_40: "m-40",
m_44: "m-44",
m_48: "m-48",
m_5: "m-5",
m_52: "m-52",
m_56: "m-56",
m_6: "m-6",
m_60: "m-60",
m_64: "m-64",
m_7: "m-7",
m_72: "m-72",
m_8: "m-8",
m_80: "m-80",
m_9: "m-9",
m_96: "m-96",
m_auto: "m-auto",
m_px: "m-px",
mb_0: "mb-0",
mb_0_p_5: "mb-0\\.5",
mb_1: "mb-1",
mb_10: "mb-10",
mb_11: "mb-11",
mb_12: "mb-12",
mb_14: "mb-14",
mb_16: "mb-16",
mb_1_p_5: "mb-1\\.5",
mb_2: "mb-2",
mb_20: "mb-20",
mb_24: "mb-24",
mb_28: "mb-28",
mb_2_p_5: "mb-2\\.5",
mb_3: "mb-3",
mb_32: "mb-32",
mb_36: "mb-36",
mb_3_p_5: "mb-3\\.5",
mb_4: "mb-4",
mb_40: "mb-40",
mb_44: "mb-44",
mb_48: "mb-48",
mb_5: "mb-5",
mb_52: "mb-52",
mb_56: "mb-56",
mb_6: "mb-6",
mb_60: "mb-60",
mb_64: "mb-64",
mb_7: "mb-7",
mb_72: "mb-72",
mb_8: "mb-8",
mb_80: "mb-80",
mb_9: "mb-9",
mb_96: "mb-96",
mb_auto: "mb-auto",
mb_px: "mb-px",
ml_0: "ml-0",
ml_0_p_5: "ml-0\\.5",
ml_1: "ml-1",
ml_10: "ml-10",
ml_11: "ml-11",
ml_12: "ml-12",
ml_14: "ml-14",
ml_16: "ml-16",
ml_1_p_5: "ml-1\\.5",
ml_2: "ml-2",
ml_20: "ml-20",
ml_24: "ml-24",
ml_28: "ml-28",
ml_2_p_5: "ml-2\\.5",
ml_3: "ml-3",
ml_32: "ml-32",
ml_36: "ml-36",
ml_3_p_5: "ml-3\\.5",
ml_4: "ml-4",
ml_40: "ml-40",
ml_44: "ml-44",
ml_48: "ml-48",
ml_5: "ml-5",
ml_52: "ml-52",
ml_56: "ml-56",
ml_6: "ml-6",
ml_60: "ml-60",
ml_64: "ml-64",
ml_7: "ml-7",
ml_72: "ml-72",
ml_8: "ml-8",
ml_80: "ml-80",
ml_9: "ml-9",
ml_96: "ml-96",
ml_auto: "ml-auto",
ml_px: "ml-px",
mr_0: "mr-0",
mr_0_p_5: "mr-0\\.5",
mr_1: "mr-1",
mr_10: "mr-10",
mr_11: "mr-11",
mr_12: "mr-12",
mr_14: "mr-14",
mr_16: "mr-16",
mr_1_p_5: "mr-1\\.5",
mr_2: "mr-2",
mr_20: "mr-20",
mr_24: "mr-24",
mr_28: "mr-28",
mr_2_p_5: "mr-2\\.5",
mr_3: "mr-3",
mr_32: "mr-32",
mr_36: "mr-36",
mr_3_p_5: "mr-3\\.5",
mr_4: "mr-4",
mr_40: "mr-40",
mr_44: "mr-44",
mr_48: "mr-48",
mr_5: "mr-5",
mr_52: "mr-52",
mr_56: "mr-56",
mr_6: "mr-6",
mr_60: "mr-60",
mr_64: "mr-64",
mr_7: "mr-7",
mr_72: "mr-72",
mr_8: "mr-8",
mr_80: "mr-80",
mr_9: "mr-9",
mr_96: "mr-96",
mr_auto: "mr-auto",
mr_px: "mr-px",
mt_0: "mt-0",
mt_0_p_5: "mt-0\\.5",
mt_1: "mt-1",
mt_10: "mt-10",
mt_11: "mt-11",
mt_12: "mt-12",
mt_14: "mt-14",
mt_16: "mt-16",
mt_1_p_5: "mt-1\\.5",
mt_2: "mt-2",
mt_20: "mt-20",
mt_24: "mt-24",
mt_28: "mt-28",
mt_2_p_5: "mt-2\\.5",
mt_3: "mt-3",
mt_32: "mt-32",
mt_36: "mt-36",
mt_3_p_5: "mt-3\\.5",
mt_4: "mt-4",
mt_40: "mt-40",
mt_44: "mt-44",
mt_48: "mt-48",
mt_5: "mt-5",
mt_52: "mt-52",
mt_56: "mt-56",
mt_6: "mt-6",
mt_60: "mt-60",
mt_64: "mt-64",
mt_7: "mt-7",
mt_72: "mt-72",
mt_8: "mt-8",
mt_80: "mt-80",
mt_9: "mt-9",
mt_96: "mt-96",
mt_auto: "mt-auto",
mt_px: "mt-px",
mx_0: "mx-0",
mx_0_p_5: "mx-0\\.5",
mx_1: "mx-1",
mx_10: "mx-10",
mx_11: "mx-11",
mx_12: "mx-12",
mx_14: "mx-14",
mx_16: "mx-16",
mx_1_p_5: "mx-1\\.5",
mx_2: "mx-2",
mx_20: "mx-20",
mx_24: "mx-24",
mx_28: "mx-28",
mx_2_p_5: "mx-2\\.5",
mx_3: "mx-3",
mx_32: "mx-32",
mx_36: "mx-36",
mx_3_p_5: "mx-3\\.5",
mx_4: "mx-4",
mx_40: "mx-40",
mx_44: "mx-44",
mx_48: "mx-48",
mx_5: "mx-5",
mx_52: "mx-52",
mx_56: "mx-56",
mx_6: "mx-6",
mx_60: "mx-60",
mx_64: "mx-64",
mx_7: "mx-7",
mx_72: "mx-72",
mx_8: "mx-8",
mx_80: "mx-80",
mx_9: "mx-9",
mx_96: "mx-96",
mx_auto: "mx-auto",
mx_px: "mx-px",
my_0: "my-0",
my_0_p_5: "my-0\\.5",
my_1: "my-1",
my_10: "my-10",
my_11: "my-11",
my_12: "my-12",
my_14: "my-14",
my_16: "my-16",
my_1_p_5: "my-1\\.5",
my_2: "my-2",
my_20: "my-20",
my_24: "my-24",
my_28: "my-28",
my_2_p_5: "my-2\\.5",
my_3: "my-3",
my_32: "my-32",
my_36: "my-36",
my_3_p_5: "my-3\\.5",
my_4: "my-4",
my_40: "my-40",
my_44: "my-44",
my_48: "my-48",
my_5: "my-5",
my_52: "my-52",
my_56: "my-56",
my_6: "my-6",
my_60: "my-60",
my_64: "my-64",
my_7: "my-7",
my_72: "my-72",
my_8: "my-8",
my_80: "my-80",
my_9: "my-9",
my_96: "my-96",
my_auto: "my-auto",
my_px: "my-px",
p_0: "p-0",
p_0_p_5: "p-0\\.5",
p_1: "p-1",
p_10: "p-10",
p_11: "p-11",
p_12: "p-12",
p_14: "p-14",
p_16: "p-16",
p_1_p_5: "p-1\\.5",
p_2: "p-2",
p_20: "p-20",
p_24: "p-24",
p_28: "p-28",
p_2_p_5: "p-2\\.5",
p_3: "p-3",
p_32: "p-32",
p_36: "p-36",
p_3_p_5: "p-3\\.5",
p_4: "p-4",
p_40: "p-40",
p_44: "p-44",
p_48: "p-48",
p_5: "p-5",
p_52: "p-52",
p_56: "p-56",
p_6: "p-6",
p_60: "p-60",
p_64: "p-64",
p_7: "p-7",
p_72: "p-72",
p_8: "p-8",
p_80: "p-80",
p_9: "p-9",
p_96: "p-96",
p_px: "p-px",
pb_0: "pb-0",
pb_0_p_5: "pb-0\\.5",
pb_1: "pb-1",
pb_10: "pb-10",
pb_11: "pb-11",
pb_12: "pb-12",
pb_14: "pb-14",
pb_16: "pb-16",
pb_1_p_5: "pb-1\\.5",
pb_2: "pb-2",
pb_20: "pb-20",
pb_24: "pb-24",
pb_28: "pb-28",
pb_2_p_5: "pb-2\\.5",
pb_3: "pb-3",
pb_32: "pb-32",
pb_36: "pb-36",
pb_3_p_5: "pb-3\\.5",
pb_4: "pb-4",
pb_40: "pb-40",
pb_44: "pb-44",
pb_48: "pb-48",
pb_5: "pb-5",
pb_52: "pb-52",
pb_56: "pb-56",
pb_6: "pb-6",
pb_60: "pb-60",
pb_64: "pb-64",
pb_7: "pb-7",
pb_72: "pb-72",
pb_8: "pb-8",
pb_80: "pb-80",
pb_9: "pb-9",
pb_96: "pb-96",
pb_px: "pb-px",
pl_0: "pl-0",
pl_0_p_5: "pl-0\\.5",
pl_1: "pl-1",
pl_10: "pl-10",
pl_11: "pl-11",
pl_12: "pl-12",
pl_14: "pl-14",
pl_16: "pl-16",
pl_1_p_5: "pl-1\\.5",
pl_2: "pl-2",
pl_20: "pl-20",
pl_24: "pl-24",
pl_28: "pl-28",
pl_2_p_5: "pl-2\\.5",
pl_3: "pl-3",
pl_32: "pl-32",
pl_36: "pl-36",
pl_3_p_5: "pl-3\\.5",
pl_4: "pl-4",
pl_40: "pl-40",
pl_44: "pl-44",
pl_48: "pl-48",
pl_5: "pl-5",
pl_52: "pl-52",
pl_56: "pl-56",
pl_6: "pl-6",
pl_60: "pl-60",
pl_64: "pl-64",
pl_7: "pl-7",
pl_72: "pl-72",
pl_8: "pl-8",
pl_80: "pl-80",
pl_9: "pl-9",
pl_96: "pl-96",
pl_px: "pl-px",
pr_0: "pr-0",
pr_0_p_5: "pr-0\\.5",
pr_1: "pr-1",
pr_10: "pr-10",
pr_11: "pr-11",
pr_12: "pr-12",
pr_14: "pr-14",
pr_16: "pr-16",
pr_1_p_5: "pr-1\\.5",
pr_2: "pr-2",
pr_20: "pr-20",
pr_24: "pr-24",
pr_28: "pr-28",
pr_2_p_5: "pr-2\\.5",
pr_3: "pr-3",
pr_32: "pr-32",
pr_36: "pr-36",
pr_3_p_5: "pr-3\\.5",
pr_4: "pr-4",
pr_40: "pr-40",
pr_44: "pr-44",
pr_48: "pr-48",
pr_5: "pr-5",
pr_52: "pr-52",
pr_56: "pr-56",
pr_6: "pr-6",
pr_60: "pr-60",
pr_64: "pr-64",
pr_7: "pr-7",
pr_72: "pr-72",
pr_8: "pr-8",
pr_80: "pr-80",
pr_9: "pr-9",
pr_96: "pr-96",
pr_px: "pr-px",
pt_0: "pt-0",
pt_0_p_5: "pt-0\\.5",
pt_1: "pt-1",
pt_10: "pt-10",
pt_11: "pt-11",
pt_12: "pt-12",
pt_14: "pt-14",
pt_16: "pt-16",
pt_1_p_5: "pt-1\\.5",
pt_2: "pt-2",
pt_20: "pt-20",
pt_24: "pt-24",
pt_28: "pt-28",
pt_2_p_5: "pt-2\\.5",
pt_3: "pt-3",
pt_32: "pt-32",
pt_36: "pt-36",
pt_3_p_5: "pt-3\\.5",
pt_4: "pt-4",
pt_40: "pt-40",
pt_44: "pt-44",
pt_48: "pt-48",
pt_5: "pt-5",
pt_52: "pt-52",
pt_56: "pt-56",
pt_6: "pt-6",
pt_60: "pt-60",
pt_64: "pt-64",
pt_7: "pt-7",
pt_72: "pt-72",
pt_8: "pt-8",
pt_80: "pt-80",
pt_9: "pt-9",
pt_96: "pt-96",
pt_px: "pt-px",
px_0: "px-0",
px_0_p_5: "px-0\\.5",
px_1: "px-1",
px_10: "px-10",
px_11: "px-11",
px_12: "px-12",
px_14: "px-14",
px_16: "px-16",
px_1_p_5: "px-1\\.5",
px_2: "px-2",
px_20: "px-20",
px_24: "px-24",
px_28: "px-28",
px_2_p_5: "px-2\\.5",
px_3: "px-3",
px_32: "px-32",
px_36: "px-36",
px_3_p_5: "px-3\\.5",
px_4: "px-4",
px_40: "px-40",
px_44: "px-44",
px_48: "px-48",
px_5: "px-5",
px_52: "px-52",
px_56: "px-56",
px_6: "px-6",
px_60: "px-60",
px_64: "px-64",
px_7: "px-7",
px_72: "px-72",
px_8: "px-8",
px_80: "px-80",
px_9: "px-9",
px_96: "px-96",
px_px: "px-px",
py_0: "py-0",
py_0_p_5: "py-0\\.5",
py_1: "py-1",
py_10: "py-10",
py_11: "py-11",
py_12: "py-12",
py_14: "py-14",
py_16: "py-16",
py_1_p_5: "py-1\\.5",
py_2: "py-2",
py_20: "py-20",
py_24: "py-24",
py_28: "py-28",
py_2_p_5: "py-2\\.5",
py_3: "py-3",
py_32: "py-32",
py_36: "py-36",
py_3_p_5: "py-3\\.5",
py_4: "py-4",
py_40: "py-40",
py_44: "py-44",
py_48: "py-48",
py_5: "py-5",
py_52: "py-52",
py_56: "py-56",
py_6: "py-6",
py_60: "py-60",
py_64: "py-64",
py_7: "py-7",
py_72: "py-72",
py_8: "py-8",
py_80: "py-80",
py_9: "py-9",
py_96: "py-96",
py_px: "py-px",
};
pub static SVG: Svg = Svg {
fill_amber_100: "fill-amber-100",
fill_amber_200: "fill-amber-200",
fill_amber_300: "fill-amber-300",
fill_amber_400: "fill-amber-400",
fill_amber_50: "fill-amber-50",
fill_amber_500: "fill-amber-500",
fill_amber_600: "fill-amber-600",
fill_amber_700: "fill-amber-700",
fill_amber_800: "fill-amber-800",
fill_amber_900: "fill-amber-900",
fill_black: "fill-black",
fill_blue_100: "fill-blue-100",
fill_blue_200: "fill-blue-200",
fill_blue_300: "fill-blue-300",
fill_blue_400: "fill-blue-400",
fill_blue_50: "fill-blue-50",
fill_blue_500: "fill-blue-500",
fill_blue_600: "fill-blue-600",
fill_blue_700: "fill-blue-700",
fill_blue_800: "fill-blue-800",
fill_blue_900: "fill-blue-900",
fill_current: "fill-current",
fill_cyan_100: "fill-cyan-100",
fill_cyan_200: "fill-cyan-200",
fill_cyan_300: "fill-cyan-300",
fill_cyan_400: "fill-cyan-400",
fill_cyan_50: "fill-cyan-50",
fill_cyan_500: "fill-cyan-500",
fill_cyan_600: "fill-cyan-600",
fill_cyan_700: "fill-cyan-700",
fill_cyan_800: "fill-cyan-800",
fill_cyan_900: "fill-cyan-900",
fill_emerald_100: "fill-emerald-100",
fill_emerald_200: "fill-emerald-200",
fill_emerald_300: "fill-emerald-300",
fill_emerald_400: "fill-emerald-400",
fill_emerald_50: "fill-emerald-50",
fill_emerald_500: "fill-emerald-500",
fill_emerald_600: "fill-emerald-600",
fill_emerald_700: "fill-emerald-700",
fill_emerald_800: "fill-emerald-800",
fill_emerald_900: "fill-emerald-900",
fill_fuchsia_100: "fill-fuchsia-100",
fill_fuchsia_200: "fill-fuchsia-200",
fill_fuchsia_300: "fill-fuchsia-300",
fill_fuchsia_400: "fill-fuchsia-400",
fill_fuchsia_50: "fill-fuchsia-50",
fill_fuchsia_500: "fill-fuchsia-500",
fill_fuchsia_600: "fill-fuchsia-600",
fill_fuchsia_700: "fill-fuchsia-700",
fill_fuchsia_800: "fill-fuchsia-800",
fill_fuchsia_900: "fill-fuchsia-900",
fill_gray_100: "fill-gray-100",
fill_gray_200: "fill-gray-200",
fill_gray_300: "fill-gray-300",
fill_gray_400: "fill-gray-400",
fill_gray_50: "fill-gray-50",
fill_gray_500: "fill-gray-500",
fill_gray_600: "fill-gray-600",
fill_gray_700: "fill-gray-700",
fill_gray_800: "fill-gray-800",
fill_gray_900: "fill-gray-900",
fill_green_100: "fill-green-100",
fill_green_200: "fill-green-200",
fill_green_300: "fill-green-300",
fill_green_400: "fill-green-400",
fill_green_50: "fill-green-50",
fill_green_500: "fill-green-500",
fill_green_600: "fill-green-600",
fill_green_700: "fill-green-700",
fill_green_800: "fill-green-800",
fill_green_900: "fill-green-900",
fill_indigo_100: "fill-indigo-100",
fill_indigo_200: "fill-indigo-200",
fill_indigo_300: "fill-indigo-300",
fill_indigo_400: "fill-indigo-400",
fill_indigo_50: "fill-indigo-50",
fill_indigo_500: "fill-indigo-500",
fill_indigo_600: "fill-indigo-600",
fill_indigo_700: "fill-indigo-700",
fill_indigo_800: "fill-indigo-800",
fill_indigo_900: "fill-indigo-900",
fill_inherit: "fill-inherit",
fill_lime_100: "fill-lime-100",
fill_lime_200: "fill-lime-200",
fill_lime_300: "fill-lime-300",
fill_lime_400: "fill-lime-400",
fill_lime_50: "fill-lime-50",
fill_lime_500: "fill-lime-500",
fill_lime_600: "fill-lime-600",
fill_lime_700: "fill-lime-700",
fill_lime_800: "fill-lime-800",
fill_lime_900: "fill-lime-900",
fill_neutral_100: "fill-neutral-100",
fill_neutral_200: "fill-neutral-200",
fill_neutral_300: "fill-neutral-300",
fill_neutral_400: "fill-neutral-400",
fill_neutral_50: "fill-neutral-50",
fill_neutral_500: "fill-neutral-500",
fill_neutral_600: "fill-neutral-600",
fill_neutral_700: "fill-neutral-700",
fill_neutral_800: "fill-neutral-800",
fill_neutral_900: "fill-neutral-900",
fill_orange_100: "fill-orange-100",
fill_orange_200: "fill-orange-200",
fill_orange_300: "fill-orange-300",
fill_orange_400: "fill-orange-400",
fill_orange_50: "fill-orange-50",
fill_orange_500: "fill-orange-500",
fill_orange_600: "fill-orange-600",
fill_orange_700: "fill-orange-700",
fill_orange_800: "fill-orange-800",
fill_orange_900: "fill-orange-900",
fill_pink_100: "fill-pink-100",
fill_pink_200: "fill-pink-200",
fill_pink_300: "fill-pink-300",
fill_pink_400: "fill-pink-400",
fill_pink_50: "fill-pink-50",
fill_pink_500: "fill-pink-500",
fill_pink_600: "fill-pink-600",
fill_pink_700: "fill-pink-700",
fill_pink_800: "fill-pink-800",
fill_pink_900: "fill-pink-900",
fill_purple_100: "fill-purple-100",
fill_purple_200: "fill-purple-200",
fill_purple_300: "fill-purple-300",
fill_purple_400: "fill-purple-400",
fill_purple_50: "fill-purple-50",
fill_purple_500: "fill-purple-500",
fill_purple_600: "fill-purple-600",
fill_purple_700: "fill-purple-700",
fill_purple_800: "fill-purple-800",
fill_purple_900: "fill-purple-900",
fill_red_100: "fill-red-100",
fill_red_200: "fill-red-200",
fill_red_300: "fill-red-300",
fill_red_400: "fill-red-400",
fill_red_50: "fill-red-50",
fill_red_500: "fill-red-500",
fill_red_600: "fill-red-600",
fill_red_700: "fill-red-700",
fill_red_800: "fill-red-800",
fill_red_900: "fill-red-900",
fill_rose_100: "fill-rose-100",
fill_rose_200: "fill-rose-200",
fill_rose_300: "fill-rose-300",
fill_rose_400: "fill-rose-400",
fill_rose_50: "fill-rose-50",
fill_rose_500: "fill-rose-500",
fill_rose_600: "fill-rose-600",
fill_rose_700: "fill-rose-700",
fill_rose_800: "fill-rose-800",
fill_rose_900: "fill-rose-900",
fill_sky_100: "fill-sky-100",
fill_sky_200: "fill-sky-200",
fill_sky_300: "fill-sky-300",
fill_sky_400: "fill-sky-400",
fill_sky_50: "fill-sky-50",
fill_sky_500: "fill-sky-500",
fill_sky_600: "fill-sky-600",
fill_sky_700: "fill-sky-700",
fill_sky_800: "fill-sky-800",
fill_sky_900: "fill-sky-900",
fill_slate_100: "fill-slate-100",
fill_slate_200: "fill-slate-200",
fill_slate_300: "fill-slate-300",
fill_slate_400: "fill-slate-400",
fill_slate_50: "fill-slate-50",
fill_slate_500: "fill-slate-500",
fill_slate_600: "fill-slate-600",
fill_slate_700: "fill-slate-700",
fill_slate_800: "fill-slate-800",
fill_slate_900: "fill-slate-900",
fill_stone_100: "fill-stone-100",
fill_stone_200: "fill-stone-200",
fill_stone_300: "fill-stone-300",
fill_stone_400: "fill-stone-400",
fill_stone_50: "fill-stone-50",
fill_stone_500: "fill-stone-500",
fill_stone_600: "fill-stone-600",
fill_stone_700: "fill-stone-700",
fill_stone_800: "fill-stone-800",
fill_stone_900: "fill-stone-900",
fill_teal_100: "fill-teal-100",
fill_teal_200: "fill-teal-200",
fill_teal_300: "fill-teal-300",
fill_teal_400: "fill-teal-400",
fill_teal_50: "fill-teal-50",
fill_teal_500: "fill-teal-500",
fill_teal_600: "fill-teal-600",
fill_teal_700: "fill-teal-700",
fill_teal_800: "fill-teal-800",
fill_teal_900: "fill-teal-900",
fill_transparent: "fill-transparent",
fill_violet_100: "fill-violet-100",
fill_violet_200: "fill-violet-200",
fill_violet_300: "fill-violet-300",
fill_violet_400: "fill-violet-400",
fill_violet_50: "fill-violet-50",
fill_violet_500: "fill-violet-500",
fill_violet_600: "fill-violet-600",
fill_violet_700: "fill-violet-700",
fill_violet_800: "fill-violet-800",
fill_violet_900: "fill-violet-900",
fill_white: "fill-white",
fill_yellow_100: "fill-yellow-100",
fill_yellow_200: "fill-yellow-200",
fill_yellow_300: "fill-yellow-300",
fill_yellow_400: "fill-yellow-400",
fill_yellow_50: "fill-yellow-50",
fill_yellow_500: "fill-yellow-500",
fill_yellow_600: "fill-yellow-600",
fill_yellow_700: "fill-yellow-700",
fill_yellow_800: "fill-yellow-800",
fill_yellow_900: "fill-yellow-900",
fill_zinc_100: "fill-zinc-100",
fill_zinc_200: "fill-zinc-200",
fill_zinc_300: "fill-zinc-300",
fill_zinc_400: "fill-zinc-400",
fill_zinc_50: "fill-zinc-50",
fill_zinc_500: "fill-zinc-500",
fill_zinc_600: "fill-zinc-600",
fill_zinc_700: "fill-zinc-700",
fill_zinc_800: "fill-zinc-800",
fill_zinc_900: "fill-zinc-900",
stroke_0: "stroke-0",
stroke_1: "stroke-1",
stroke_2: "stroke-2",
stroke_amber_100: "stroke-amber-100",
stroke_amber_200: "stroke-amber-200",
stroke_amber_300: "stroke-amber-300",
stroke_amber_400: "stroke-amber-400",
stroke_amber_50: "stroke-amber-50",
stroke_amber_500: "stroke-amber-500",
stroke_amber_600: "stroke-amber-600",
stroke_amber_700: "stroke-amber-700",
stroke_amber_800: "stroke-amber-800",
stroke_amber_900: "stroke-amber-900",
stroke_black: "stroke-black",
stroke_blue_100: "stroke-blue-100",
stroke_blue_200: "stroke-blue-200",
stroke_blue_300: "stroke-blue-300",
stroke_blue_400: "stroke-blue-400",
stroke_blue_50: "stroke-blue-50",
stroke_blue_500: "stroke-blue-500",
stroke_blue_600: "stroke-blue-600",
stroke_blue_700: "stroke-blue-700",
stroke_blue_800: "stroke-blue-800",
stroke_blue_900: "stroke-blue-900",
stroke_current: "stroke-current",
stroke_cyan_100: "stroke-cyan-100",
stroke_cyan_200: "stroke-cyan-200",
stroke_cyan_300: "stroke-cyan-300",
stroke_cyan_400: "stroke-cyan-400",
stroke_cyan_50: "stroke-cyan-50",
stroke_cyan_500: "stroke-cyan-500",
stroke_cyan_600: "stroke-cyan-600",
stroke_cyan_700: "stroke-cyan-700",
stroke_cyan_800: "stroke-cyan-800",
stroke_cyan_900: "stroke-cyan-900",
stroke_emerald_100: "stroke-emerald-100",
stroke_emerald_200: "stroke-emerald-200",
stroke_emerald_300: "stroke-emerald-300",
stroke_emerald_400: "stroke-emerald-400",
stroke_emerald_50: "stroke-emerald-50",
stroke_emerald_500: "stroke-emerald-500",
stroke_emerald_600: "stroke-emerald-600",
stroke_emerald_700: "stroke-emerald-700",
stroke_emerald_800: "stroke-emerald-800",
stroke_emerald_900: "stroke-emerald-900",
stroke_fuchsia_100: "stroke-fuchsia-100",
stroke_fuchsia_200: "stroke-fuchsia-200",
stroke_fuchsia_300: "stroke-fuchsia-300",
stroke_fuchsia_400: "stroke-fuchsia-400",
stroke_fuchsia_50: "stroke-fuchsia-50",
stroke_fuchsia_500: "stroke-fuchsia-500",
stroke_fuchsia_600: "stroke-fuchsia-600",
stroke_fuchsia_700: "stroke-fuchsia-700",
stroke_fuchsia_800: "stroke-fuchsia-800",
stroke_fuchsia_900: "stroke-fuchsia-900",
stroke_gray_100: "stroke-gray-100",
stroke_gray_200: "stroke-gray-200",
stroke_gray_300: "stroke-gray-300",
stroke_gray_400: "stroke-gray-400",
stroke_gray_50: "stroke-gray-50",
stroke_gray_500: "stroke-gray-500",
stroke_gray_600: "stroke-gray-600",
stroke_gray_700: "stroke-gray-700",
stroke_gray_800: "stroke-gray-800",
stroke_gray_900: "stroke-gray-900",
stroke_green_100: "stroke-green-100",
stroke_green_200: "stroke-green-200",
stroke_green_300: "stroke-green-300",
stroke_green_400: "stroke-green-400",
stroke_green_50: "stroke-green-50",
stroke_green_500: "stroke-green-500",
stroke_green_600: "stroke-green-600",
stroke_green_700: "stroke-green-700",
stroke_green_800: "stroke-green-800",
stroke_green_900: "stroke-green-900",
stroke_indigo_100: "stroke-indigo-100",
stroke_indigo_200: "stroke-indigo-200",
stroke_indigo_300: "stroke-indigo-300",
stroke_indigo_400: "stroke-indigo-400",
stroke_indigo_50: "stroke-indigo-50",
stroke_indigo_500: "stroke-indigo-500",
stroke_indigo_600: "stroke-indigo-600",
stroke_indigo_700: "stroke-indigo-700",
stroke_indigo_800: "stroke-indigo-800",
stroke_indigo_900: "stroke-indigo-900",
stroke_inherit: "stroke-inherit",
stroke_lime_100: "stroke-lime-100",
stroke_lime_200: "stroke-lime-200",
stroke_lime_300: "stroke-lime-300",
stroke_lime_400: "stroke-lime-400",
stroke_lime_50: "stroke-lime-50",
stroke_lime_500: "stroke-lime-500",
stroke_lime_600: "stroke-lime-600",
stroke_lime_700: "stroke-lime-700",
stroke_lime_800: "stroke-lime-800",
stroke_lime_900: "stroke-lime-900",
stroke_neutral_100: "stroke-neutral-100",
stroke_neutral_200: "stroke-neutral-200",
stroke_neutral_300: "stroke-neutral-300",
stroke_neutral_400: "stroke-neutral-400",
stroke_neutral_50: "stroke-neutral-50",
stroke_neutral_500: "stroke-neutral-500",
stroke_neutral_600: "stroke-neutral-600",
stroke_neutral_700: "stroke-neutral-700",
stroke_neutral_800: "stroke-neutral-800",
stroke_neutral_900: "stroke-neutral-900",
stroke_orange_100: "stroke-orange-100",
stroke_orange_200: "stroke-orange-200",
stroke_orange_300: "stroke-orange-300",
stroke_orange_400: "stroke-orange-400",
stroke_orange_50: "stroke-orange-50",
stroke_orange_500: "stroke-orange-500",
stroke_orange_600: "stroke-orange-600",
stroke_orange_700: "stroke-orange-700",
stroke_orange_800: "stroke-orange-800",
stroke_orange_900: "stroke-orange-900",
stroke_pink_100: "stroke-pink-100",
stroke_pink_200: "stroke-pink-200",
stroke_pink_300: "stroke-pink-300",
stroke_pink_400: "stroke-pink-400",
stroke_pink_50: "stroke-pink-50",
stroke_pink_500: "stroke-pink-500",
stroke_pink_600: "stroke-pink-600",
stroke_pink_700: "stroke-pink-700",
stroke_pink_800: "stroke-pink-800",
stroke_pink_900: "stroke-pink-900",
stroke_purple_100: "stroke-purple-100",
stroke_purple_200: "stroke-purple-200",
stroke_purple_300: "stroke-purple-300",
stroke_purple_400: "stroke-purple-400",
stroke_purple_50: "stroke-purple-50",
stroke_purple_500: "stroke-purple-500",
stroke_purple_600: "stroke-purple-600",
stroke_purple_700: "stroke-purple-700",
stroke_purple_800: "stroke-purple-800",
stroke_purple_900: "stroke-purple-900",
stroke_red_100: "stroke-red-100",
stroke_red_200: "stroke-red-200",
stroke_red_300: "stroke-red-300",
stroke_red_400: "stroke-red-400",
stroke_red_50: "stroke-red-50",
stroke_red_500: "stroke-red-500",
stroke_red_600: "stroke-red-600",
stroke_red_700: "stroke-red-700",
stroke_red_800: "stroke-red-800",
stroke_red_900: "stroke-red-900",
stroke_rose_100: "stroke-rose-100",
stroke_rose_200: "stroke-rose-200",
stroke_rose_300: "stroke-rose-300",
stroke_rose_400: "stroke-rose-400",
stroke_rose_50: "stroke-rose-50",
stroke_rose_500: "stroke-rose-500",
stroke_rose_600: "stroke-rose-600",
stroke_rose_700: "stroke-rose-700",
stroke_rose_800: "stroke-rose-800",
stroke_rose_900: "stroke-rose-900",
stroke_sky_100: "stroke-sky-100",
stroke_sky_200: "stroke-sky-200",
stroke_sky_300: "stroke-sky-300",
stroke_sky_400: "stroke-sky-400",
stroke_sky_50: "stroke-sky-50",
stroke_sky_500: "stroke-sky-500",
stroke_sky_600: "stroke-sky-600",
stroke_sky_700: "stroke-sky-700",
stroke_sky_800: "stroke-sky-800",
stroke_sky_900: "stroke-sky-900",
stroke_slate_100: "stroke-slate-100",
stroke_slate_200: "stroke-slate-200",
stroke_slate_300: "stroke-slate-300",
stroke_slate_400: "stroke-slate-400",
stroke_slate_50: "stroke-slate-50",
stroke_slate_500: "stroke-slate-500",
stroke_slate_600: "stroke-slate-600",
stroke_slate_700: "stroke-slate-700",
stroke_slate_800: "stroke-slate-800",
stroke_slate_900: "stroke-slate-900",
stroke_stone_100: "stroke-stone-100",
stroke_stone_200: "stroke-stone-200",
stroke_stone_300: "stroke-stone-300",
stroke_stone_400: "stroke-stone-400",
stroke_stone_50: "stroke-stone-50",
stroke_stone_500: "stroke-stone-500",
stroke_stone_600: "stroke-stone-600",
stroke_stone_700: "stroke-stone-700",
stroke_stone_800: "stroke-stone-800",
stroke_stone_900: "stroke-stone-900",
stroke_teal_100: "stroke-teal-100",
stroke_teal_200: "stroke-teal-200",
stroke_teal_300: "stroke-teal-300",
stroke_teal_400: "stroke-teal-400",
stroke_teal_50: "stroke-teal-50",
stroke_teal_500: "stroke-teal-500",
stroke_teal_600: "stroke-teal-600",
stroke_teal_700: "stroke-teal-700",
stroke_teal_800: "stroke-teal-800",
stroke_teal_900: "stroke-teal-900",
stroke_transparent: "stroke-transparent",
stroke_violet_100: "stroke-violet-100",
stroke_violet_200: "stroke-violet-200",
stroke_violet_300: "stroke-violet-300",
stroke_violet_400: "stroke-violet-400",
stroke_violet_50: "stroke-violet-50",
stroke_violet_500: "stroke-violet-500",
stroke_violet_600: "stroke-violet-600",
stroke_violet_700: "stroke-violet-700",
stroke_violet_800: "stroke-violet-800",
stroke_violet_900: "stroke-violet-900",
stroke_white: "stroke-white",
stroke_yellow_100: "stroke-yellow-100",
stroke_yellow_200: "stroke-yellow-200",
stroke_yellow_300: "stroke-yellow-300",
stroke_yellow_400: "stroke-yellow-400",
stroke_yellow_50: "stroke-yellow-50",
stroke_yellow_500: "stroke-yellow-500",
stroke_yellow_600: "stroke-yellow-600",
stroke_yellow_700: "stroke-yellow-700",
stroke_yellow_800: "stroke-yellow-800",
stroke_yellow_900: "stroke-yellow-900",
stroke_zinc_100: "stroke-zinc-100",
stroke_zinc_200: "stroke-zinc-200",
stroke_zinc_300: "stroke-zinc-300",
stroke_zinc_400: "stroke-zinc-400",
stroke_zinc_50: "stroke-zinc-50",
stroke_zinc_500: "stroke-zinc-500",
stroke_zinc_600: "stroke-zinc-600",
stroke_zinc_700: "stroke-zinc-700",
stroke_zinc_800: "stroke-zinc-800",
stroke_zinc_900: "stroke-zinc-900",
};
pub static TABLES: Tables = Tables {
border_collapse: "border-collapse",
border_separate: "border-separate",
table_auto: "table-auto",
table_fixed: "table-fixed",
};
pub static TRANSFORMS: Transforms = Transforms {
origin_bottom: "origin-bottom",
origin_bottom_left: "origin-bottom-left",
origin_bottom_right: "origin-bottom-right",
origin_center: "origin-center",
origin_left: "origin-left",
origin_right: "origin-right",
origin_top: "origin-top",
origin_top_left: "origin-top-left",
origin_top_right: "origin-top-right",
rotate_0: "rotate-0",
rotate_1: "rotate-1",
rotate_12: "rotate-12",
rotate_180: "rotate-180",
rotate_2: "rotate-2",
rotate_3: "rotate-3",
rotate_45: "rotate-45",
rotate_6: "rotate-6",
rotate_90: "rotate-90",
scale_0: "scale-0",
scale_100: "scale-100",
scale_105: "scale-105",
scale_110: "scale-110",
scale_125: "scale-125",
scale_150: "scale-150",
scale_50: "scale-50",
scale_75: "scale-75",
scale_90: "scale-90",
scale_95: "scale-95",
scale_x_0: "scale-x-0",
scale_x_100: "scale-x-100",
scale_x_105: "scale-x-105",
scale_x_110: "scale-x-110",
scale_x_125: "scale-x-125",
scale_x_150: "scale-x-150",
scale_x_50: "scale-x-50",
scale_x_75: "scale-x-75",
scale_x_90: "scale-x-90",
scale_x_95: "scale-x-95",
scale_y_0: "scale-y-0",
scale_y_100: "scale-y-100",
scale_y_105: "scale-y-105",
scale_y_110: "scale-y-110",
scale_y_125: "scale-y-125",
scale_y_150: "scale-y-150",
scale_y_50: "scale-y-50",
scale_y_75: "scale-y-75",
scale_y_90: "scale-y-90",
scale_y_95: "scale-y-95",
skew_x_0: "skew-x-0",
skew_x_1: "skew-x-1",
skew_x_12: "skew-x-12",
skew_x_2: "skew-x-2",
skew_x_3: "skew-x-3",
skew_x_6: "skew-x-6",
skew_y_0: "skew-y-0",
skew_y_1: "skew-y-1",
skew_y_12: "skew-y-12",
skew_y_2: "skew-y-2",
skew_y_3: "skew-y-3",
skew_y_6: "skew-y-6",
transform: "transform",
transform_cpu: "transform-cpu",
transform_gpu: "transform-gpu",
transform_none: "transform-none",
translate_x_0: "translate-x-0",
translate_x_0_p_5: "translate-x-0\\.5",
translate_x_1: "translate-x-1",
translate_x_10: "translate-x-10",
translate_x_11: "translate-x-11",
translate_x_12: "translate-x-12",
translate_x_14: "translate-x-14",
translate_x_16: "translate-x-16",
translate_x_1_of_2: "translate-x-1\\/2",
translate_x_1_of_3: "translate-x-1\\/3",
translate_x_1_of_4: "translate-x-1\\/4",
translate_x_1_p_5: "translate-x-1\\.5",
translate_x_2: "translate-x-2",
translate_x_20: "translate-x-20",
translate_x_24: "translate-x-24",
translate_x_28: "translate-x-28",
translate_x_2_of_3: "translate-x-2\\/3",
translate_x_2_of_4: "translate-x-2\\/4",
translate_x_2_p_5: "translate-x-2\\.5",
translate_x_3: "translate-x-3",
translate_x_32: "translate-x-32",
translate_x_36: "translate-x-36",
translate_x_3_of_4: "translate-x-3\\/4",
translate_x_3_p_5: "translate-x-3\\.5",
translate_x_4: "translate-x-4",
translate_x_40: "translate-x-40",
translate_x_44: "translate-x-44",
translate_x_48: "translate-x-48",
translate_x_5: "translate-x-5",
translate_x_52: "translate-x-52",
translate_x_56: "translate-x-56",
translate_x_6: "translate-x-6",
translate_x_60: "translate-x-60",
translate_x_64: "translate-x-64",
translate_x_7: "translate-x-7",
translate_x_72: "translate-x-72",
translate_x_8: "translate-x-8",
translate_x_80: "translate-x-80",
translate_x_9: "translate-x-9",
translate_x_96: "translate-x-96",
translate_x_full: "translate-x-full",
translate_x_px: "translate-x-px",
translate_y_0: "translate-y-0",
translate_y_0_p_5: "translate-y-0\\.5",
translate_y_1: "translate-y-1",
translate_y_10: "translate-y-10",
translate_y_11: "translate-y-11",
translate_y_12: "translate-y-12",
translate_y_14: "translate-y-14",
translate_y_16: "translate-y-16",
translate_y_1_of_2: "translate-y-1\\/2",
translate_y_1_of_3: "translate-y-1\\/3",
translate_y_1_of_4: "translate-y-1\\/4",
translate_y_1_p_5: "translate-y-1\\.5",
translate_y_2: "translate-y-2",
translate_y_20: "translate-y-20",
translate_y_24: "translate-y-24",
translate_y_28: "translate-y-28",
translate_y_2_of_3: "translate-y-2\\/3",
translate_y_2_of_4: "translate-y-2\\/4",
translate_y_2_p_5: "translate-y-2\\.5",
translate_y_3: "translate-y-3",
translate_y_32: "translate-y-32",
translate_y_36: "translate-y-36",
translate_y_3_of_4: "translate-y-3\\/4",
translate_y_3_p_5: "translate-y-3\\.5",
translate_y_4: "translate-y-4",
translate_y_40: "translate-y-40",
translate_y_44: "translate-y-44",
translate_y_48: "translate-y-48",
translate_y_5: "translate-y-5",
translate_y_52: "translate-y-52",
translate_y_56: "translate-y-56",
translate_y_6: "translate-y-6",
translate_y_60: "translate-y-60",
translate_y_64: "translate-y-64",
translate_y_7: "translate-y-7",
translate_y_72: "translate-y-72",
translate_y_8: "translate-y-8",
translate_y_80: "translate-y-80",
translate_y_9: "translate-y-9",
translate_y_96: "translate-y-96",
translate_y_full: "translate-y-full",
translate_y_px: "translate-y-px",
};
pub static TYPOGRAPHY: Typography = Typography {
align_baseline: "align-baseline",
align_bottom: "align-bottom",
align_middle: "align-middle",
align_sub: "align-sub",
align_super: "align-super",
align_text_bottom: "align-text-bottom",
align_text_top: "align-text-top",
align_top: "align-top",
antialiased: "antialiased",
break_all: "break-all",
break_normal: "break-normal",
break_words: "break-words",
capitalize: "capitalize",
content_none: "content-none",
decoration_0: "decoration-0",
decoration_1: "decoration-1",
decoration_2: "decoration-2",
decoration_4: "decoration-4",
decoration_8: "decoration-8",
decoration_amber_100: "decoration-amber-100",
decoration_amber_200: "decoration-amber-200",
decoration_amber_300: "decoration-amber-300",
decoration_amber_400: "decoration-amber-400",
decoration_amber_50: "decoration-amber-50",
decoration_amber_500: "decoration-amber-500",
decoration_amber_600: "decoration-amber-600",
decoration_amber_700: "decoration-amber-700",
decoration_amber_800: "decoration-amber-800",
decoration_amber_900: "decoration-amber-900",
decoration_auto: "decoration-auto",
decoration_black: "decoration-black",
decoration_blue_100: "decoration-blue-100",
decoration_blue_200: "decoration-blue-200",
decoration_blue_300: "decoration-blue-300",
decoration_blue_400: "decoration-blue-400",
decoration_blue_50: "decoration-blue-50",
decoration_blue_500: "decoration-blue-500",
decoration_blue_600: "decoration-blue-600",
decoration_blue_700: "decoration-blue-700",
decoration_blue_800: "decoration-blue-800",
decoration_blue_900: "decoration-blue-900",
decoration_current: "decoration-current",
decoration_cyan_100: "decoration-cyan-100",
decoration_cyan_200: "decoration-cyan-200",
decoration_cyan_300: "decoration-cyan-300",
decoration_cyan_400: "decoration-cyan-400",
decoration_cyan_50: "decoration-cyan-50",
decoration_cyan_500: "decoration-cyan-500",
decoration_cyan_600: "decoration-cyan-600",
decoration_cyan_700: "decoration-cyan-700",
decoration_cyan_800: "decoration-cyan-800",
decoration_cyan_900: "decoration-cyan-900",
decoration_dashed: "decoration-dashed",
decoration_dotted: "decoration-dotted",
decoration_double: "decoration-double",
decoration_emerald_100: "decoration-emerald-100",
decoration_emerald_200: "decoration-emerald-200",
decoration_emerald_300: "decoration-emerald-300",
decoration_emerald_400: "decoration-emerald-400",
decoration_emerald_50: "decoration-emerald-50",
decoration_emerald_500: "decoration-emerald-500",
decoration_emerald_600: "decoration-emerald-600",
decoration_emerald_700: "decoration-emerald-700",
decoration_emerald_800: "decoration-emerald-800",
decoration_emerald_900: "decoration-emerald-900",
decoration_from_font: "decoration-from-font",
decoration_fuchsia_100: "decoration-fuchsia-100",
decoration_fuchsia_200: "decoration-fuchsia-200",
decoration_fuchsia_300: "decoration-fuchsia-300",
decoration_fuchsia_400: "decoration-fuchsia-400",
decoration_fuchsia_50: "decoration-fuchsia-50",
decoration_fuchsia_500: "decoration-fuchsia-500",
decoration_fuchsia_600: "decoration-fuchsia-600",
decoration_fuchsia_700: "decoration-fuchsia-700",
decoration_fuchsia_800: "decoration-fuchsia-800",
decoration_fuchsia_900: "decoration-fuchsia-900",
decoration_gray_100: "decoration-gray-100",
decoration_gray_200: "decoration-gray-200",
decoration_gray_300: "decoration-gray-300",
decoration_gray_400: "decoration-gray-400",
decoration_gray_50: "decoration-gray-50",
decoration_gray_500: "decoration-gray-500",
decoration_gray_600: "decoration-gray-600",
decoration_gray_700: "decoration-gray-700",
decoration_gray_800: "decoration-gray-800",
decoration_gray_900: "decoration-gray-900",
decoration_green_100: "decoration-green-100",
decoration_green_200: "decoration-green-200",
decoration_green_300: "decoration-green-300",
decoration_green_400: "decoration-green-400",
decoration_green_50: "decoration-green-50",
decoration_green_500: "decoration-green-500",
decoration_green_600: "decoration-green-600",
decoration_green_700: "decoration-green-700",
decoration_green_800: "decoration-green-800",
decoration_green_900: "decoration-green-900",
decoration_indigo_100: "decoration-indigo-100",
decoration_indigo_200: "decoration-indigo-200",
decoration_indigo_300: "decoration-indigo-300",
decoration_indigo_400: "decoration-indigo-400",
decoration_indigo_50: "decoration-indigo-50",
decoration_indigo_500: "decoration-indigo-500",
decoration_indigo_600: "decoration-indigo-600",
decoration_indigo_700: "decoration-indigo-700",
decoration_indigo_800: "decoration-indigo-800",
decoration_indigo_900: "decoration-indigo-900",
decoration_inherit: "decoration-inherit",
decoration_lime_100: "decoration-lime-100",
decoration_lime_200: "decoration-lime-200",
decoration_lime_300: "decoration-lime-300",
decoration_lime_400: "decoration-lime-400",
decoration_lime_50: "decoration-lime-50",
decoration_lime_500: "decoration-lime-500",
decoration_lime_600: "decoration-lime-600",
decoration_lime_700: "decoration-lime-700",
decoration_lime_800: "decoration-lime-800",
decoration_lime_900: "decoration-lime-900",
decoration_neutral_100: "decoration-neutral-100",
decoration_neutral_200: "decoration-neutral-200",
decoration_neutral_300: "decoration-neutral-300",
decoration_neutral_400: "decoration-neutral-400",
decoration_neutral_50: "decoration-neutral-50",
decoration_neutral_500: "decoration-neutral-500",
decoration_neutral_600: "decoration-neutral-600",
decoration_neutral_700: "decoration-neutral-700",
decoration_neutral_800: "decoration-neutral-800",
decoration_neutral_900: "decoration-neutral-900",
decoration_orange_100: "decoration-orange-100",
decoration_orange_200: "decoration-orange-200",
decoration_orange_300: "decoration-orange-300",
decoration_orange_400: "decoration-orange-400",
decoration_orange_50: "decoration-orange-50",
decoration_orange_500: "decoration-orange-500",
decoration_orange_600: "decoration-orange-600",
decoration_orange_700: "decoration-orange-700",
decoration_orange_800: "decoration-orange-800",
decoration_orange_900: "decoration-orange-900",
decoration_pink_100: "decoration-pink-100",
decoration_pink_200: "decoration-pink-200",
decoration_pink_300: "decoration-pink-300",
decoration_pink_400: "decoration-pink-400",
decoration_pink_50: "decoration-pink-50",
decoration_pink_500: "decoration-pink-500",
decoration_pink_600: "decoration-pink-600",
decoration_pink_700: "decoration-pink-700",
decoration_pink_800: "decoration-pink-800",
decoration_pink_900: "decoration-pink-900",
decoration_purple_100: "decoration-purple-100",
decoration_purple_200: "decoration-purple-200",
decoration_purple_300: "decoration-purple-300",
decoration_purple_400: "decoration-purple-400",
decoration_purple_50: "decoration-purple-50",
decoration_purple_500: "decoration-purple-500",
decoration_purple_600: "decoration-purple-600",
decoration_purple_700: "decoration-purple-700",
decoration_purple_800: "decoration-purple-800",
decoration_purple_900: "decoration-purple-900",
decoration_red_100: "decoration-red-100",
decoration_red_200: "decoration-red-200",
decoration_red_300: "decoration-red-300",
decoration_red_400: "decoration-red-400",
decoration_red_50: "decoration-red-50",
decoration_red_500: "decoration-red-500",
decoration_red_600: "decoration-red-600",
decoration_red_700: "decoration-red-700",
decoration_red_800: "decoration-red-800",
decoration_red_900: "decoration-red-900",
decoration_rose_100: "decoration-rose-100",
decoration_rose_200: "decoration-rose-200",
decoration_rose_300: "decoration-rose-300",
decoration_rose_400: "decoration-rose-400",
decoration_rose_50: "decoration-rose-50",
decoration_rose_500: "decoration-rose-500",
decoration_rose_600: "decoration-rose-600",
decoration_rose_700: "decoration-rose-700",
decoration_rose_800: "decoration-rose-800",
decoration_rose_900: "decoration-rose-900",
decoration_sky_100: "decoration-sky-100",
decoration_sky_200: "decoration-sky-200",
decoration_sky_300: "decoration-sky-300",
decoration_sky_400: "decoration-sky-400",
decoration_sky_50: "decoration-sky-50",
decoration_sky_500: "decoration-sky-500",
decoration_sky_600: "decoration-sky-600",
decoration_sky_700: "decoration-sky-700",
decoration_sky_800: "decoration-sky-800",
decoration_sky_900: "decoration-sky-900",
decoration_slate_100: "decoration-slate-100",
decoration_slate_200: "decoration-slate-200",
decoration_slate_300: "decoration-slate-300",
decoration_slate_400: "decoration-slate-400",
decoration_slate_50: "decoration-slate-50",
decoration_slate_500: "decoration-slate-500",
decoration_slate_600: "decoration-slate-600",
decoration_slate_700: "decoration-slate-700",
decoration_slate_800: "decoration-slate-800",
decoration_slate_900: "decoration-slate-900",
decoration_solid: "decoration-solid",
decoration_stone_100: "decoration-stone-100",
decoration_stone_200: "decoration-stone-200",
decoration_stone_300: "decoration-stone-300",
decoration_stone_400: "decoration-stone-400",
decoration_stone_50: "decoration-stone-50",
decoration_stone_500: "decoration-stone-500",
decoration_stone_600: "decoration-stone-600",
decoration_stone_700: "decoration-stone-700",
decoration_stone_800: "decoration-stone-800",
decoration_stone_900: "decoration-stone-900",
decoration_teal_100: "decoration-teal-100",
decoration_teal_200: "decoration-teal-200",
decoration_teal_300: "decoration-teal-300",
decoration_teal_400: "decoration-teal-400",
decoration_teal_50: "decoration-teal-50",
decoration_teal_500: "decoration-teal-500",
decoration_teal_600: "decoration-teal-600",
decoration_teal_700: "decoration-teal-700",
decoration_teal_800: "decoration-teal-800",
decoration_teal_900: "decoration-teal-900",
decoration_transparent: "decoration-transparent",
decoration_violet_100: "decoration-violet-100",
decoration_violet_200: "decoration-violet-200",
decoration_violet_300: "decoration-violet-300",
decoration_violet_400: "decoration-violet-400",
decoration_violet_50: "decoration-violet-50",
decoration_violet_500: "decoration-violet-500",
decoration_violet_600: "decoration-violet-600",
decoration_violet_700: "decoration-violet-700",
decoration_violet_800: "decoration-violet-800",
decoration_violet_900: "decoration-violet-900",
decoration_wavy: "decoration-wavy",
decoration_white: "decoration-white",
decoration_yellow_100: "decoration-yellow-100",
decoration_yellow_200: "decoration-yellow-200",
decoration_yellow_300: "decoration-yellow-300",
decoration_yellow_400: "decoration-yellow-400",
decoration_yellow_50: "decoration-yellow-50",
decoration_yellow_500: "decoration-yellow-500",
decoration_yellow_600: "decoration-yellow-600",
decoration_yellow_700: "decoration-yellow-700",
decoration_yellow_800: "decoration-yellow-800",
decoration_yellow_900: "decoration-yellow-900",
decoration_zinc_100: "decoration-zinc-100",
decoration_zinc_200: "decoration-zinc-200",
decoration_zinc_300: "decoration-zinc-300",
decoration_zinc_400: "decoration-zinc-400",
decoration_zinc_50: "decoration-zinc-50",
decoration_zinc_500: "decoration-zinc-500",
decoration_zinc_600: "decoration-zinc-600",
decoration_zinc_700: "decoration-zinc-700",
decoration_zinc_800: "decoration-zinc-800",
decoration_zinc_900: "decoration-zinc-900",
diagonal_fractions: "diagonal-fractions",
font_black: "font-black",
font_bold: "font-bold",
font_extrabold: "font-extrabold",
font_extralight: "font-extralight",
font_light: "font-light",
font_medium: "font-medium",
font_mono: "font-mono",
font_normal: "font-normal",
font_sans: "font-sans",
font_semibold: "font-semibold",
font_serif: "font-serif",
font_thin: "font-thin",
indent_0: "indent-0",
indent_0_p_5: "indent-0\\.5",
indent_1: "indent-1",
indent_10: "indent-10",
indent_11: "indent-11",
indent_12: "indent-12",
indent_14: "indent-14",
indent_16: "indent-16",
indent_1_p_5: "indent-1\\.5",
indent_2: "indent-2",
indent_20: "indent-20",
indent_24: "indent-24",
indent_28: "indent-28",
indent_2_p_5: "indent-2\\.5",
indent_3: "indent-3",
indent_32: "indent-32",
indent_36: "indent-36",
indent_3_p_5: "indent-3\\.5",
indent_4: "indent-4",
indent_40: "indent-40",
indent_44: "indent-44",
indent_48: "indent-48",
indent_5: "indent-5",
indent_52: "indent-52",
indent_56: "indent-56",
indent_6: "indent-6",
indent_60: "indent-60",
indent_64: "indent-64",
indent_7: "indent-7",
indent_72: "indent-72",
indent_8: "indent-8",
indent_80: "indent-80",
indent_9: "indent-9",
indent_96: "indent-96",
indent_px: "indent-px",
italic: "italic",
leading_10: "leading-10",
leading_3: "leading-3",
leading_4: "leading-4",
leading_5: "leading-5",
leading_6: "leading-6",
leading_7: "leading-7",
leading_8: "leading-8",
leading_9: "leading-9",
leading_loose: "leading-loose",
leading_none: "leading-none",
leading_normal: "leading-normal",
leading_relaxed: "leading-relaxed",
leading_snug: "leading-snug",
leading_tight: "leading-tight",
line_through: "line-through",
lining_nums: "lining-nums",
list_decimal: "list-decimal",
list_disc: "list-disc",
list_inside: "list-inside",
list_none: "list-none",
list_outside: "list-outside",
lowercase: "lowercase",
no_underline: "no-underline",
normal_case: "normal-case",
normal_nums: "normal-nums",
not_italic: "not-italic",
oldstyle_nums: "oldstyle-nums",
ordinal: "ordinal",
overline: "overline",
proportional_nums: "proportional-nums",
slashed_zero: "slashed-zero",
stacked_fractions: "stacked-fractions",
subpixel_antialiased: "subpixel-antialiased",
tabular_nums: "tabular-nums",
text_2xl: "text-2xl",
text_3xl: "text-3xl",
text_4xl: "text-4xl",
text_5xl: "text-5xl",
text_6xl: "text-6xl",
text_7xl: "text-7xl",
text_8xl: "text-8xl",
text_9xl: "text-9xl",
text_amber_100: "text-amber-100",
text_amber_200: "text-amber-200",
text_amber_300: "text-amber-300",
text_amber_400: "text-amber-400",
text_amber_50: "text-amber-50",
text_amber_500: "text-amber-500",
text_amber_600: "text-amber-600",
text_amber_700: "text-amber-700",
text_amber_800: "text-amber-800",
text_amber_900: "text-amber-900",
text_base: "text-base",
text_black: "text-black",
text_blue_100: "text-blue-100",
text_blue_200: "text-blue-200",
text_blue_300: "text-blue-300",
text_blue_400: "text-blue-400",
text_blue_50: "text-blue-50",
text_blue_500: "text-blue-500",
text_blue_600: "text-blue-600",
text_blue_700: "text-blue-700",
text_blue_800: "text-blue-800",
text_blue_900: "text-blue-900",
text_center: "text-center",
text_clip: "text-clip",
text_current: "text-current",
text_cyan_100: "text-cyan-100",
text_cyan_200: "text-cyan-200",
text_cyan_300: "text-cyan-300",
text_cyan_400: "text-cyan-400",
text_cyan_50: "text-cyan-50",
text_cyan_500: "text-cyan-500",
text_cyan_600: "text-cyan-600",
text_cyan_700: "text-cyan-700",
text_cyan_800: "text-cyan-800",
text_cyan_900: "text-cyan-900",
text_ellipsis: "text-ellipsis",
text_emerald_100: "text-emerald-100",
text_emerald_200: "text-emerald-200",
text_emerald_300: "text-emerald-300",
text_emerald_400: "text-emerald-400",
text_emerald_50: "text-emerald-50",
text_emerald_500: "text-emerald-500",
text_emerald_600: "text-emerald-600",
text_emerald_700: "text-emerald-700",
text_emerald_800: "text-emerald-800",
text_emerald_900: "text-emerald-900",
text_fuchsia_100: "text-fuchsia-100",
text_fuchsia_200: "text-fuchsia-200",
text_fuchsia_300: "text-fuchsia-300",
text_fuchsia_400: "text-fuchsia-400",
text_fuchsia_50: "text-fuchsia-50",
text_fuchsia_500: "text-fuchsia-500",
text_fuchsia_600: "text-fuchsia-600",
text_fuchsia_700: "text-fuchsia-700",
text_fuchsia_800: "text-fuchsia-800",
text_fuchsia_900: "text-fuchsia-900",
text_gray_100: "text-gray-100",
text_gray_200: "text-gray-200",
text_gray_300: "text-gray-300",
text_gray_400: "text-gray-400",
text_gray_50: "text-gray-50",
text_gray_500: "text-gray-500",
text_gray_600: "text-gray-600",
text_gray_700: "text-gray-700",
text_gray_800: "text-gray-800",
text_gray_900: "text-gray-900",
text_green_100: "text-green-100",
text_green_200: "text-green-200",
text_green_300: "text-green-300",
text_green_400: "text-green-400",
text_green_50: "text-green-50",
text_green_500: "text-green-500",
text_green_600: "text-green-600",
text_green_700: "text-green-700",
text_green_800: "text-green-800",
text_green_900: "text-green-900",
text_indigo_100: "text-indigo-100",
text_indigo_200: "text-indigo-200",
text_indigo_300: "text-indigo-300",
text_indigo_400: "text-indigo-400",
text_indigo_50: "text-indigo-50",
text_indigo_500: "text-indigo-500",
text_indigo_600: "text-indigo-600",
text_indigo_700: "text-indigo-700",
text_indigo_800: "text-indigo-800",
text_indigo_900: "text-indigo-900",
text_inherit: "text-inherit",
text_justify: "text-justify",
text_left: "text-left",
text_lg: "text-lg",
text_lime_100: "text-lime-100",
text_lime_200: "text-lime-200",
text_lime_300: "text-lime-300",
text_lime_400: "text-lime-400",
text_lime_50: "text-lime-50",
text_lime_500: "text-lime-500",
text_lime_600: "text-lime-600",
text_lime_700: "text-lime-700",
text_lime_800: "text-lime-800",
text_lime_900: "text-lime-900",
text_neutral_100: "text-neutral-100",
text_neutral_200: "text-neutral-200",
text_neutral_300: "text-neutral-300",
text_neutral_400: "text-neutral-400",
text_neutral_50: "text-neutral-50",
text_neutral_500: "text-neutral-500",
text_neutral_600: "text-neutral-600",
text_neutral_700: "text-neutral-700",
text_neutral_800: "text-neutral-800",
text_neutral_900: "text-neutral-900",
text_opacity_0: "text-opacity-0",
text_opacity_10: "text-opacity-10",
text_opacity_100: "text-opacity-100",
text_opacity_20: "text-opacity-20",
text_opacity_25: "text-opacity-25",
text_opacity_30: "text-opacity-30",
text_opacity_40: "text-opacity-40",
text_opacity_5: "text-opacity-5",
text_opacity_50: "text-opacity-50",
text_opacity_60: "text-opacity-60",
text_opacity_70: "text-opacity-70",
text_opacity_75: "text-opacity-75",
text_opacity_80: "text-opacity-80",
text_opacity_90: "text-opacity-90",
text_opacity_95: "text-opacity-95",
text_orange_100: "text-orange-100",
text_orange_200: "text-orange-200",
text_orange_300: "text-orange-300",
text_orange_400: "text-orange-400",
text_orange_50: "text-orange-50",
text_orange_500: "text-orange-500",
text_orange_600: "text-orange-600",
text_orange_700: "text-orange-700",
text_orange_800: "text-orange-800",
text_orange_900: "text-orange-900",
text_pink_100: "text-pink-100",
text_pink_200: "text-pink-200",
text_pink_300: "text-pink-300",
text_pink_400: "text-pink-400",
text_pink_50: "text-pink-50",
text_pink_500: "text-pink-500",
text_pink_600: "text-pink-600",
text_pink_700: "text-pink-700",
text_pink_800: "text-pink-800",
text_pink_900: "text-pink-900",
text_purple_100: "text-purple-100",
text_purple_200: "text-purple-200",
text_purple_300: "text-purple-300",
text_purple_400: "text-purple-400",
text_purple_50: "text-purple-50",
text_purple_500: "text-purple-500",
text_purple_600: "text-purple-600",
text_purple_700: "text-purple-700",
text_purple_800: "text-purple-800",
text_purple_900: "text-purple-900",
text_red_100: "text-red-100",
text_red_200: "text-red-200",
text_red_300: "text-red-300",
text_red_400: "text-red-400",
text_red_50: "text-red-50",
text_red_500: "text-red-500",
text_red_600: "text-red-600",
text_red_700: "text-red-700",
text_red_800: "text-red-800",
text_red_900: "text-red-900",
text_right: "text-right",
text_rose_100: "text-rose-100",
text_rose_200: "text-rose-200",
text_rose_300: "text-rose-300",
text_rose_400: "text-rose-400",
text_rose_50: "text-rose-50",
text_rose_500: "text-rose-500",
text_rose_600: "text-rose-600",
text_rose_700: "text-rose-700",
text_rose_800: "text-rose-800",
text_rose_900: "text-rose-900",
text_sky_100: "text-sky-100",
text_sky_200: "text-sky-200",
text_sky_300: "text-sky-300",
text_sky_400: "text-sky-400",
text_sky_50: "text-sky-50",
text_sky_500: "text-sky-500",
text_sky_600: "text-sky-600",
text_sky_700: "text-sky-700",
text_sky_800: "text-sky-800",
text_sky_900: "text-sky-900",
text_slate_100: "text-slate-100",
text_slate_200: "text-slate-200",
text_slate_300: "text-slate-300",
text_slate_400: "text-slate-400",
text_slate_50: "text-slate-50",
text_slate_500: "text-slate-500",
text_slate_600: "text-slate-600",
text_slate_700: "text-slate-700",
text_slate_800: "text-slate-800",
text_slate_900: "text-slate-900",
text_sm: "text-sm",
text_stone_100: "text-stone-100",
text_stone_200: "text-stone-200",
text_stone_300: "text-stone-300",
text_stone_400: "text-stone-400",
text_stone_50: "text-stone-50",
text_stone_500: "text-stone-500",
text_stone_600: "text-stone-600",
text_stone_700: "text-stone-700",
text_stone_800: "text-stone-800",
text_stone_900: "text-stone-900",
text_teal_100: "text-teal-100",
text_teal_200: "text-teal-200",
text_teal_300: "text-teal-300",
text_teal_400: "text-teal-400",
text_teal_50: "text-teal-50",
text_teal_500: "text-teal-500",
text_teal_600: "text-teal-600",
text_teal_700: "text-teal-700",
text_teal_800: "text-teal-800",
text_teal_900: "text-teal-900",
text_transparent: "text-transparent",
text_violet_100: "text-violet-100",
text_violet_200: "text-violet-200",
text_violet_300: "text-violet-300",
text_violet_400: "text-violet-400",
text_violet_50: "text-violet-50",
text_violet_500: "text-violet-500",
text_violet_600: "text-violet-600",
text_violet_700: "text-violet-700",
text_violet_800: "text-violet-800",
text_violet_900: "text-violet-900",
text_white: "text-white",
text_xl: "text-xl",
text_xs: "text-xs",
text_yellow_100: "text-yellow-100",
text_yellow_200: "text-yellow-200",
text_yellow_300: "text-yellow-300",
text_yellow_400: "text-yellow-400",
text_yellow_50: "text-yellow-50",
text_yellow_500: "text-yellow-500",
text_yellow_600: "text-yellow-600",
text_yellow_700: "text-yellow-700",
text_yellow_800: "text-yellow-800",
text_yellow_900: "text-yellow-900",
text_zinc_100: "text-zinc-100",
text_zinc_200: "text-zinc-200",
text_zinc_300: "text-zinc-300",
text_zinc_400: "text-zinc-400",
text_zinc_50: "text-zinc-50",
text_zinc_500: "text-zinc-500",
text_zinc_600: "text-zinc-600",
text_zinc_700: "text-zinc-700",
text_zinc_800: "text-zinc-800",
text_zinc_900: "text-zinc-900",
tracking_normal: "tracking-normal",
tracking_tight: "tracking-tight",
tracking_tighter: "tracking-tighter",
tracking_wide: "tracking-wide",
tracking_wider: "tracking-wider",
tracking_widest: "tracking-widest",
truncate: "truncate",
underline: "underline",
underline_offset_0: "underline-offset-0",
underline_offset_1: "underline-offset-1",
underline_offset_2: "underline-offset-2",
underline_offset_4: "underline-offset-4",
underline_offset_8: "underline-offset-8",
underline_offset_auto: "underline-offset-auto",
uppercase: "uppercase",
whitespace_normal: "whitespace-normal",
whitespace_nowrap: "whitespace-nowrap",
whitespace_pre: "whitespace-pre",
whitespace_pre_line: "whitespace-pre-line",
whitespace_pre_wrap: "whitespace-pre-wrap",
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment