WARNING: Due to how the (click:) related macros are implemented any dynamic updating of the page (like that done by the (append:) & (replace:) macros) can cause the process that applies the (click:) macros link to its target to be run again. This process needs to scan the contents of whole page for each of active (click:) macros within the current passage, this scanning takes time and interferes with the user's ability to interact with the page.
RECOMMENDATION: Use the (link:) related macros instead, and only use the (click:) related macros when absolutely necessary.
The following are the current default CSS style rules used by:
Harlowe 1.x
tw-link, .enchantment-link {
color: #4169E1;
font-weight: bold;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
tw-link:hover, .enchantment-link:hover {
color: DeepSkyBlue;
}
.visited {
color: #6941e1;
}
.visited:hover {
color: #E3E;
}
Harlowe 2.x
tw-link, .enchantment-link {
color: #4169E1;
font-weight: bold;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
tw-link:hover, .enchantment-link:hover {
color: #00bfff;
}
.visited {
color: #6941e1;
}
.visited:hover {
color: #E3E;
}
note: You can use the Web Developer Tools built into modern web-browsers to Inspect the HTML elements that make up the structure of the story's page, and the CSS currently being applied to each of the elements of that structure.