Hacker News Comment Indentation Colours

Adds an edge next to comments, in differing colours depending on the comment depth

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

/* ==UserStyle==
@name            Hacker News Comment Indentation Colours
@description     Adds an edge next to comments, in differing colours depending on the comment depth
@license         MIT
@version 0.0.1.20250117154736
@namespace https://greasyfork.org/users/16594
==/UserStyle== */

.ind[indent="0"] {
  border-right: solid 5px #ff6600;
}
.ind[indent="1"] {
  border-right: solid 5px #ffc800;
}
.ind[indent="2"] {
  border-right: solid 5px #a6ff00;
}
.ind[indent="3"] {
  border-right: solid 5px #00ff9d;
}
.ind[indent="4"] {
  border-right: solid 5px #00eaff;
}
.ind[indent="5"] {
  border-right: solid 5px #007bff;
}
.ind[indent="6"] {
  border-right: solid 5px #5100ff;
}
.ind[indent="7"] {
  border-right: solid 5px #bf00ff;
}
.ind[indent="8"] {
  border-right: solid 5px #f09;
}
.ind[indent="9"] {
  border-right: solid 5px #ff0015;
}
.ind {
  border-right: solid 5px #000;
}