Skip to main content

Linguix SDK Styling Guide

This guide explains how to customize the appearance of Linguix SDK components using CSS Custom Properties (CSS variables) and Shadow Parts.

Subscription Requirements

Important: All styling customization options described in this document are available only for users with a paid API subscription plan. Free users will see the default Linguix styling which includes a "Powered by Linguix" attribution in the alert popover. These default styles cannot be modified without an active subscription.

Default Appearance

Free users will see:

  • Default color scheme and typography
  • Standard layout and positioning
  • "Powered by Linguix" attribution in the alert popover
  • Default highlight colors and underlines

Customization Access

  • Paid API Plans: Full access to all styling options described below
  • Free Plans: No customization options available, default styles only

Table of Contents

Alert Popover Styling

The Linguix Alert Popover component (linguix-alert) can be customized using CSS Custom Properties and Shadow Parts. This section covers all available customization options.

Alert Popover

Basic Usage

To customize the Alert Popover, you can define CSS Custom Properties in your stylesheet:

linguix-alert {
--lx-background-color: #f8f9fa;
--lx-border-color: #dee2e6;
--lx-replacement-background: #28a745;
}

CSS Custom Properties

Typography

PropertyDefaultDescription
--lx-font-familyInter, sans-serifMain font family for the component
--lx-font-size16pxBase font size
--lx-font-weight400Base font weight
--lx-line-height120%Base line height
--lx-text-color#77838DBase text color

Colors and Background

PropertyDefaultDescription
--lx-background-colorwhiteBackground color of the popover
--lx-border-color#EAECF0Border color of the popover

Borders and Shadows

PropertyDefaultDescription
--lx-border-radius8pxBorder radius for the popover
--lx-border-width1pxBorder width
--lx-border-stylesolidBorder style
--lx-box-shadow0px 8px 48px -12px rgba(68, 75, 90, 0.24)Box shadow

Spacing

PropertyDefaultDescription
--lx-card-padding16pxInternal padding of the card
--lx-content-gap12pxGap between elements

Title Customization

PropertyDefaultDescription
--lx-title-color#667085Title text color
--lx-title-font-size14pxTitle font size
--lx-title-font-weight400Title font weight

Replacement Button

PropertyDefaultDescription
--lx-replacement-background#4E2CE7Button background color
--lx-replacement-hover-background#311A96Button background color on hover
--lx-replacement-colorwhiteButton text color
--lx-replacement-hover-colorwhiteButton text color on hover
--lx-replacement-padding11px 13pxButton padding
--lx-replacement-font-sizevar(--lx-font-size)Button font size
--lx-replacement-font-weight400Button font weight
--lx-replacement-border-radiusvar(--lx-border-radius)Button border radius
--lx-replacement-border-width0Button border width
--lx-replacement-border-stylenoneButton border style
--lx-replacement-border-colortransparentButton border color
--lx-replacement-hover-border-colortransparentButton border color on hover

Dismiss Button

PropertyDefaultDescription
--lx-dismiss-button-size18pxSize of the dismiss button
--lx-dismiss-button-color#98A2B3Color of the dismiss icon
--lx-dismiss-button-hover-color#E84337Color of the dismiss icon on hover
--lx-dismiss-button-z-index1Z-index of the dismiss button

Shadow Parts

Shadow Parts allow you to style specific structural elements of the component:

PartDescription
cardThe main container
headerThe header section containing title and buttons
titleThe title element
buttonsThe buttons container
dismiss-buttonThe dismiss button
dismiss-iconThe dismiss button icon
replacementsThe replacements container

Example usage:

linguix-alert::part(header) {
border-bottom: 1px solid var(--lx-border-color);
padding-bottom: 8px;
}

Examples

Modern Light Theme

Modern Light Theme

linguix-alert {
--lx-font-family: 'Roboto', sans-serif;
--lx-background-color: #ffffff;
--lx-border-color: #e5e7eb;
--lx-box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
--lx-text-color: #374151;
--lx-title-color: #111827;
--lx-title-font-weight: 500;
--lx-replacement-background: #3b82f6;
--lx-replacement-hover-background: #2563eb;
}

Dark Theme

Dark Theme

linguix-alert {
--lx-background-color: #1f2937;
--lx-border-color: #374151;
--lx-text-color: #e5e7eb;
--lx-title-color: #f3f4f6;
--lx-box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
--lx-replacement-background: #3b82f6;
--lx-replacement-hover-background: #2563eb;
--lx-dismiss-button-color: #9ca3af;
--lx-dismiss-button-hover-color: #f87171;
}

Minimal Code Editor Style

Minimal Code Editor Style

linguix-alert {
--lx-background-color: #1e1e1e;
--lx-border-color: #333333;
--lx-box-shadow: none;
--lx-text-color: #d4d4d4;
--lx-title-color: #9cdcfe;
--lx-font-family: 'JetBrains Mono', 'Fira Code', monospace;
--lx-font-size: 14px;
--lx-title-font-size: 13px;
--lx-card-padding: 12px;
--lx-content-gap: 8px;
--lx-replacement-background: #264f78;
--lx-replacement-hover-background: #37699d;
--lx-replacement-color: #d4d4d4;
--lx-dismiss-button-color: #808080;
--lx-dismiss-button-hover-color: #c586c0;
}

linguix-alert::part(header) {
border-bottom: 1px solid #333333;
padding-bottom: 8px;
}

linguix-alert::part(title) {
font-family: inherit;
opacity: 0.9;
}

linguix-alert::part(replacements) {
font-family: inherit;
background: #252526;
padding: 8px;
border-radius: 3px;
}

linguix-alert::part(dismiss-button) {
opacity: 0.8;
transition: opacity 0.2s;
}

linguix-alert::part(dismiss-button):hover {
opacity: 1;
}

Terminal Theme

Terminal Theme

linguix-alert {
/* Base styles */
--lx-background-color: #002b36;
--lx-border-color: #073642;
--lx-box-shadow: 0 0 0 1px #073642, 0 0 20px rgba(0, 43, 54, 0.5);
--lx-border-radius: 6px;
--lx-text-color: #839496;

/* Typography */
--lx-font-family: 'Source Code Pro', 'Fira Mono', monospace;
--lx-font-size: 14px;
--lx-line-height: 1.5;
--lx-title-color: #93a1a1;
--lx-title-font-size: 14px;
--lx-title-font-weight: normal;

/* Spacing */
--lx-card-padding: 8px;
--lx-content-gap: 6px;

/* Replacement button */
--lx-replacement-background: #2aa198;
--lx-replacement-hover-background: #268bd2;
--lx-replacement-color: #002b36;
--lx-replacement-hover-color: #002b36;
--lx-replacement-font-family: inherit;
--lx-replacement-font-size: inherit;
--lx-replacement-border-radius: 0;
--lx-replacement-padding: 6px 10px;

/* Dismiss button */
--lx-dismiss-button-color: #586e75;
--lx-dismiss-button-hover-color: #dc322f;
}

/* Terminal-like header with prompt */
linguix-alert::part(header) {
display: flex;
align-items: center;
padding-bottom: 6px;
border-bottom: 1px solid #073642;
}

linguix-alert::part(title) {
display: flex;
align-items: center;
}

linguix-alert::part(title)::before {
content: '$ ';
color: #859900;
margin-right: 6px;
}

/* Command-like styling for dismiss button */
linguix-alert::part(dismiss-button) {
position: relative;
padding: 4px;
opacity: 0.7;
transition: opacity 0.2s ease;
}

linguix-alert::part(dismiss-button):hover {
opacity: 1;
}

/* Code block styling for replacements */
linguix-alert::part(replacements) {
background: #073642;
margin: 0 -16px 0px;
padding: 16px;
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
position: relative;
}

Playful Bubbly Style

Playful Bubbly Style

linguix-alert {
--lx-background-color: #fef6ff;
--lx-border-color: #f0abfc;
--lx-border-width: 2px;
--lx-border-style: dashed;
--lx-box-shadow: 4px 4px 0 #f0abfc;
--lx-border-radius: 16px;
--lx-text-color: #86198f;
--lx-title-color: #be185d;
--lx-font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
--lx-font-size: 16px;
--lx-title-font-size: 18px;
--lx-title-font-weight: bold;
--lx-card-padding: 20px;
--lx-content-gap: 16px;
--lx-replacement-background: #e879f9;
--lx-replacement-hover-background: #d946ef;
--lx-replacement-color: #831843;
--lx-replacement-hover-color: #831843;
--lx-replacement-border-radius: 24px;
--lx-replacement-padding: 10px 20px;
--lx-replacement-font-weight: bold;
--lx-dismiss-button-color: #be185d;
--lx-dismiss-button-hover-color: #9d174d;
}

linguix-alert::part(card) {
transform: rotate(1deg);
}

linguix-alert::part(header) {
background: linear-gradient(120deg, #fdf4ff 0%, #fae8ff 100%);
margin: -20px -20px 16px;
padding: 20px 20px 12px;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
border-bottom: 2px dashed #f0abfc;
}

linguix-alert::part(title) {
background: linear-gradient(120deg, #be185d 0%, #86198f 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 18px;
}

linguix-alert::part(dismiss-button) {
transform: scale(1.2);
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

linguix-alert::part(dismiss-button):hover {
transform: scale(1.4) rotate(180deg);
}

linguix-alert::part(replacements) {
position: relative;
background: #fdf4ff;
padding: 16px;
border-radius: 12px;
}

linguix-alert::part(replacements)::before,
linguix-alert::part(replacements)::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background: #f0abfc;
opacity: 0.5;
}

linguix-alert::part(replacements)::before {
top: -10px;
left: 20px;
}

linguix-alert::part(replacements)::after {
bottom: -10px;
right: 20px;
}

Radical Transformation

Radical Transformation

/* This example showcases all available customization options */
linguix-alert {
/* Typography */
--lx-font-family: 'Playfair Display', serif;
--lx-font-size: 18px;
--lx-font-weight: 400;
--lx-line-height: 1.6;
--lx-text-color: #2c1810;

/* Colors and Layout */
--lx-background-color: #fdf1e7;
--lx-border-color: #8b4513;
--lx-border-radius: 0;
--lx-border-width: 2px;
--lx-border-style: double;
--lx-box-shadow: 12px 12px 0 #8b4513;

/* Spacing */
--lx-card-padding: 32px;
--lx-content-gap: 24px;

/* Title */
--lx-title-color: #5c1f0c;
--lx-title-font-size: 24px;
--lx-title-font-weight: 700;

/* Replacement Button */
--lx-replacement-background: #8b4513;
--lx-replacement-hover-background: #5c1f0c;
--lx-replacement-color: #fdf1e7;
--lx-replacement-hover-color: #ffffff;
--lx-replacement-font-family: inherit;
--lx-replacement-font-size: inherit;
--lx-replacement-border-radius: 0;
--lx-replacement-border-width: 2px;
--lx-replacement-border-style: solid;
--lx-replacement-border-color: #8b4513;
--lx-replacement-hover-border-color: #5c1f0c;

/* Dismiss Button */
--lx-dismiss-button-size: 24px;
--lx-dismiss-button-color: #8b4513;
--lx-dismiss-button-hover-color: #5c1f0c;
}

/* Shadow Parts Styling */
linguix-alert::part(card) {
transform: rotate(-1deg);
transition: transform 0.3s ease;
}

linguix-alert::part(card):hover {
transform: rotate(0deg);
}

linguix-alert::part(header) {
border-bottom: 2px solid #8b4513;
padding-bottom: 16px;
margin-bottom: 16px;
}

linguix-alert::part(title) {
font-style: italic;
letter-spacing: 0.05em;
text-transform: uppercase;
}

linguix-alert::part(buttons) {
background: #fbeadb;
padding: 8px;
border: 1px solid #8b4513;
}

linguix-alert::part(dismiss-button) {
border: 2px solid currentColor;
border-radius: 50%;
padding: 4px;
transition: all 0.3s ease;
}

linguix-alert::part(dismiss-button):hover {
transform: rotate(90deg);
}

linguix-alert::part(replacements) {
background: #fbeadb;
padding: 24px;
border: 1px solid #8b4513;
position: relative;
}

linguix-alert::part(replacements)::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 2px solid #8b4513;
transform: translate(4px, 4px);
pointer-events: none;
}

Minimalist Float Style

Minimalist Float Style

linguix-alert {
--lx-background-color: #ffffff;
--lx-border-color: #e5e7eb;
--lx-box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--lx-border-radius: 6px;
--lx-text-color: #374151;
--lx-font-family: system-ui, -apple-system, sans-serif;
--lx-font-size: 14px;
--lx-card-padding: 6px;
--lx-content-gap: 0px;

/* Hide title */
--lx-title-font-size: 0;
--lx-title-color: transparent;

/* Replacement button */
--lx-replacement-background: #4f46e5;
--lx-replacement-hover-background: #4338ca;
--lx-replacement-color: white;
--lx-replacement-hover-color: #ffffff;
--lx-replacement-font-family: inherit;
--lx-replacement-font-size: inherit;
--lx-replacement-border-radius: 6px;

/* Dismiss button */
--lx-dismiss-button-color: #9ca3af;
--lx-dismiss-button-hover-color: #6b7280;
}

linguix-alert::part(header) {
height: 0;
}

/* Position buttons absolutely */
linguix-alert::part(buttons) {
position: absolute;
top: 6px;
right: 6px;
z-index: 10;
}

/* Add hover effect to buttons */
linguix-alert::part(dismiss-button) {
padding: 4px;
border-radius: 4px;
transition: background-color 0.2s;
}

linguix-alert::part(dismiss-button):hover {
background-color: #f3f4f6;
}

Custom Dismiss Button Style

Custom Dismiss Button Style

linguix-alert {
--lx-dismiss-button-size: 0;
}

/* Style the dismiss button with custom SVG */
linguix-alert::part(dismiss-button) {
width: 24px;
height: 24px;
padding: 0;
background-color: transparent;
/* Circular close button with arrow */
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9' stroke='currentColor' fill='none'/%3E%3Cpath d='M9 15L15 9M9 9l6 6' stroke='currentColor' stroke-linecap='round'/%3E%3C/svg%3E");
background-size: contain;
transition: transform 0.3s ease, filter 0.3s ease;
}

linguix-alert::part(dismiss-button) svg {
display: none;
}

linguix-alert::part(dismiss-button):hover {
transform: rotate(90deg);
filter: brightness(0.8) contrast(1.2);
}

Highlighter Styling

The Linguix Highlighter component (linguix-highlighter) can be customized using CSS Custom Properties (CSS variables). These variables allow you to control the appearance of text highlights, underlines, and positioning.

Available CSS Variables

VariableDefaultDescription
--lx-highlight-underline-color#f04438Color of the underline beneath highlighted text
--lx-highlight-underline-thickness2pxThickness of the underline
--lx-highlight-background-colorrgba(240, 68, 56, 0.1)Background color when text is selected
--lx-highlight-background-opacity1Opacity of the background highlight
--lx-highlight-z-index0Base z-index for the highlighter

Usage Examples

Basic Styling

linguix-highlighter {
--lx-highlight-underline-color: #dc2626;
--lx-highlight-underline-thickness: 2px;
--lx-highlight-background-color: rgba(220, 38, 38, 0.15);
--lx-highlight-background-opacity: 1;
--lx-highlight-z-index: 100;
}

Semantic Styles

Error Highlights
linguix-highlighter {
--lx-highlight-underline-color: #dc2626;
--lx-highlight-underline-thickness: 2px;
--lx-highlight-background-color: rgba(220, 38, 38, 0.15);
--lx-highlight-background-opacity: 1;
}
Warning Highlights
linguix-highlighter {
--lx-highlight-underline-color: #eab308;
--lx-highlight-underline-thickness: 2px;
--lx-highlight-background-color: rgba(234, 179, 8, 0.1);
--lx-highlight-background-opacity: 0.8;
}
Info Highlights
linguix-highlighter {
--lx-highlight-underline-color: #0ea5e9;
--lx-highlight-underline-thickness: 1.5px;
--lx-highlight-background-color: rgba(14, 165, 233, 0.08);
--lx-highlight-background-opacity: 0.9;
}

Subtle Style

linguix-highlighter {
--lx-highlight-underline-color: #94a3b8;
--lx-highlight-underline-thickness: 1px;
--lx-highlight-background-color: rgba(148, 163, 184, 0.1);
--lx-highlight-background-opacity: 0.5;
}

Z-Index Management

The highlighter's z-index is computed by combining two values:

  1. The base z-index set through --lx-highlight-z-index
  2. The element's own z-index

The final z-index will be the sum of these two values. This allows for:

  • Setting a base z-index for all highlights through CSS
  • Maintaining proper stacking order relative to the highlighted element
  • Fine-grained control over layering in complex UIs

Example of z-index customization:

/* Set different z-index bases for different contexts */
.editor-content linguix-highlighter {
--lx-highlight-z-index: 100;
}

.overlay-content linguix-highlighter {
--lx-highlight-z-index: 1000;
}

Best Practices

  1. Underline Visibility

    • Keep --lx-highlight-underline-thickness between 1-3px for optimal visibility
    • Use contrasting colors for better readability
  2. Background Highlights

    • Use semi-transparent colors for background highlights
    • Adjust opacity based on the contrast with text
    • Keep --lx-highlight-background-opacity below 0.2 for better readability
  3. Z-Index Management

    • Start with lower z-index values and increment as needed
    • Consider the stacking context of your application
    • Use consistent z-index ranges for similar components