> For the complete documentation index, see [llms.txt](https://2600hz.gitbook.io/sds/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://2600hz.gitbook.io/sds/sds-3.0/sds-components/components/table/tokens.md).

# Tokens

```scss
body {
  --sds_table_background_color: var(--sds_theme_background, #f1f1f1);
  --sds_table_titleBar_text: var(--sds_theme_text, #000000);
  --sds_table_border_color: var(--sds_theme_border, #ababab);
  --sds_table_header_background_color: var(--sds_theme_background_low, #e3e3e3);
  --sds_table_header_text: var(--sds_theme_text_subtle, #5c5c5c);
  --sds_table_row_background_color: var(--sds_table_background_color);
  --sds_table_row_interactive_background_color: var(
    --sds_theme_background_high,
    #ffffff
  );
  --sds_table_row_striped_background_color: var(
    --sds_theme_background_low,
    #e3e3e3
  );
  --sds_table_row_selected_background_color: var(
    --sds_theme_color_primary_background,
    #edeffb
  );
  --sds_table_row_error_background_color: var(
    --sds_theme_color_danger_background,
    #fee7e7
  );
}
```
