LyteNyte Grid is designed to be styled primarily through CSS variables and class selectors. This guide covers the main styling options and provides best practices for customizing LyteNyte Grid within your applications.
LyteNyte Grid includes four pre-made themes that you can use immediately. To apply any of these
themes, simply add the appropriate class name to a parent element (typically the HTML
or body
tag).
All CSS variables in LyteNyte Grid use the lng1771
prefix to prevent collisions with other
variables in your application.
Below are the default CSS variables used by LyteNyte Grid:
--lng1771-primary-05: rgba(18, 108, 255, 0.05);
--lng1771-primary-10: rgba(18, 108, 255, 0.1);
--lng1771-primary-30: rgba(18, 108, 255, 0.3);
--lng1771-primary-50: #126cff;
--lng1771-primary-70: #053f9e;
--lng1771-primary-90: #012259;
--lng1771-row-selected: #d6e4fe;
--lng1771-focus-outline: var(--lng1771-primary-50);
--lng1771-gradient-shadow: linear-gradient(
90deg,
var(--lng1771-gray-50),
var(--lng1771-gray-50)
);
--lng1771-gray-00: #ffffff;
--lng1771-gray-02: #fafbfc;
--lng1771-gray-05: #f6f8fa;
--lng1771-gray-10: #f2f4f7;
--lng1771-gray-20: #e9edf1;
--lng1771-gray-30: #dadfe7;
--lng1771-gray-40: #c3c9d5;
--lng1771-gray-50: #949ba8;
--lng1771-gray-60: #787e8c;
--lng1771-gray-70: #5c6170;
--lng1771-gray-80: #2d2f39;
--lng1771-gray-90: #1e1e29;
--lng1771-gray-100: #15151e;
--lng1771-typeface: "Inter", ui-sans-serif, system-ui, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
LyteNyte Grid assigns specific class names to most DOM elements, allowing targeted styling through CSS selectors. These classes follow the BEM naming convention. While you can reference the list below, inspecting elements with your browser's developer tools is often the quickest way to identify the correct class to target.
lng1771-viewport
- Applied to the root viewport containerlng1771-header-container
- Applied to the root header containerlng1771-header
- Applied to the grid's header componentlng1771-header-group
- Applied to group headerslng1771-row-container
- Applied to the element containing grid cells (excluding headers)lng1771-header__cell
- Applied to header cells
lng1771-header__cell--over
- Applied when a column move is active and over the celllng1771-header__cell--over-before
- Applied when a column move is active and before the celllng1771-header__cell--over-after
- Applied when a column move is active and after the celllng1771-header__cell--over-not-allowed
- Applied when column movement is not allowedlng1771-header__cell-expand
- Applied to empty column header cells used for expanding groupslng1771-header__cell-divider
- Applied to header cell separators
lng1771-header__cell-divider--resizable
- Applied when the column is resizablelng1771-header__cell-floating
- Applied to floating header cellslng1771-rows__top-section
- Applied to rows pinned to the toplng1771-rows__center-section
- Applied to scrollable rows in the centerlng1771-rows__bottom-section
- Applied to rows pinned to the bottomlng1771-row-drag-indicator
- Applied to the indicator shown during row dragginglng1771-cell
- Applied to grid cells
lng1771-cell--alternate
- Applied to alternate cells for zebra stripinglng1771-cell--selected
- Applied to cells in selected rowslng1771-cell--last-start
- Applied to the last cell pinned to the start of a rowlng1771-cell--first-end
- Applied to the first cell pinned to the end of a rowlng1771-cell__edit
- Applied to the edit provider container for editable cellslng1771-cell__edit-input
- Applied to built-in input editorslng1771-cell__full-width
- Applied to full-width cells
lng1771-cell__full-width--alternate
- Applied to alternate full-width cellslng1771-cell__full-width--selected
- Applied to selected full-width cellslng1771-cell__marker
- Applied to marker column cellslng1771-row-detail
- Applied to row detail containers for expanded detail rowsNote that this covers only classes applied to LyteNyte Grid core components. Additional components like column managers and menus have their own set of classes, which are covered in their respective guides.