LAPLACE Clock has no accounts and stores no configuration on any server. Every setting is a query parameter in the address bar, and touching any control in the configurator writes it back immediately. That is the whole mechanism behind one-click sharing over a URL — send someone the address and they open the exact same clock
You rarely need to edit these by hand; the configurator is there for that. This page is for anyone generating addresses in bulk, or nudging a value past what a slider allows
Parameter List
Any parameter absent from the address falls back to its default. Booleans are 1 for on and 0 for off
| Parameter | Type | Default | Option |
|---|---|---|---|
color | string | #22542b | Font Top Color |
color2 | string | #bad5b8 | Font Bottom Color |
singleColor | boolean | 0 | Single color (gradient off) |
gradientDeg | number | 180 | Gradient Angle |
border | string | #ffffff | Stroke Color |
borderSize | number | 1 | Stroke Width (px) |
fontString | string | ZCOOL XiaoWei | Custom Font |
isBold | boolean | 1 | Bold |
position | string | flex-start | Text Alignment |
showSecond | boolean | 1 | Show Seconds |
12h | boolean | 0 | 12-Hour Format |
timezone | string | default | Timezone |
timeSync | boolean | 0 | Time Sync |
showDate | boolean | 0 | Show Date |
locale | string | default | Date Format Override |
yearFormat | string | numeric | Year Format |
monthFormat | string | 2-digit | Month Format |
dayFormat | string | 2-digit | Day Format |
weekFormat | string | short | Weekday Format |
dateSize | number | 3 | Date Font Size (rem) |
Enumerated Values
| Parameter | Values |
|---|---|
position | flex-start, center, flex-end |
timezone | default, or any IANA timezone name such as Asia/Shanghai |
locale | default, zh-CN, zh-TW, en, ja, th, de, fr, no, it |
yearFormat | numeric, 2-digit, hidden |
monthFormat | long, short, narrow, 2-digit, numeric |
dayFormat | 2-digit, numeric |
weekFormat | long, short, narrow, hidden |
Example
https://clock.laplace.live/?color=%23ffffff&color2=%23888888&fontString=Orbitron&position=center&showDate=1&timeSync=1The # in a color has to be written as %23 in a URL. The configurator handles that for you when it builds the address
Stability and Fallbacks
- Parameter names are never renamed or repurposed. Streamers paste an address into OBS and often leave it untouched for years, so the names stay compatible no matter how the internals change. The
var(--clock-font-*)font values from older versions are likewise mapped to real font names automatically - Invalid values fall back safely instead of erroring. Locale, timezone, alignment, and every date format are validated before rendering: anything unrecognized is treated as unset, and
positionfalls back toflex-start - Background color is not a URL parameter. The configurator's Background Color is a browser-only preview aid, never written to the address, and the background in OBS is always transparent
Related Links
- Settings - What every option means and the values it accepts
- Using It in OBS - Getting the configured address into OBS
Last updated on September 3, 2026