# configuration/constants/tab.constants.ts

> 16 lines of code and 16 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-configuration-constants-tab-constants-ts
Source text: https://banes-lab.com/assets/sources/source.1b3c2fb21e4fb69210ec6c4a90f7638b459343c76ed6045416ddfc386953a0c3.generated.txt

## Definitions

- `SUBSECTION_INFIX` (lexical_declaration, line 1, exported)
- `PINNED_CLASS` (lexical_declaration, line 3, exported)
- `PIN_OFFSET_PX` (lexical_declaration, line 5, exported)
- `SCROLL_TARGET_RATIO` (lexical_declaration, line 7, exported)
- `SCROLL_SETTLE_DELAY_MS` (lexical_declaration, line 9, exported)
- `SCROLL_SETTLE_TOLERANCE_PX` (lexical_declaration, line 11, exported)
- `SCROLL_BEHAVIOR` (lexical_declaration, line 13, exported)
- `SCROLL_BLOCK` (lexical_declaration, line 15, exported)
- `METHODOLOGY_TONE` (lexical_declaration, line 17, exported)
- `GRAMMAR_TONE` (lexical_declaration, line 19, exported)
- `ARCHITECTURE_TONE` (lexical_declaration, line 21, exported)
- `ONTOLOGY_TONE` (lexical_declaration, line 23, exported)
- `ANATOMY_TONE` (lexical_declaration, line 25, exported)
- `SECTION_LETTERS` (lexical_declaration, line 27, exported)
- `LABEL_GROUP_SIZE` (lexical_declaration, line 29, exported)
- `LABEL_SEPARATOR` (lexical_declaration, line 31, exported)

## Source

```typescript
export const SUBSECTION_INFIX = "-sub-";

export const PINNED_CLASS = "pinned";

export const PIN_OFFSET_PX = 16;

export const SCROLL_TARGET_RATIO = 0.5;

export const SCROLL_SETTLE_DELAY_MS = 700;

export const SCROLL_SETTLE_TOLERANCE_PX = 1;

export const SCROLL_BEHAVIOR: ScrollBehavior = "smooth";

export const SCROLL_BLOCK: ScrollLogicalPosition = "center";

export const METHODOLOGY_TONE = "methodology";

export const GRAMMAR_TONE = "grammar";

export const ARCHITECTURE_TONE = "architecture";

export const ONTOLOGY_TONE = "ontology";

export const ANATOMY_TONE = "anatomy";

export const SECTION_LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

export const LABEL_GROUP_SIZE = 9;

export const LABEL_SEPARATOR = ".";
```
