Loading...
 
Skip to main content
(Cached)

About post-Tiki 25.2 GitLab branch 25x theme files

Compiling the SCSS files

Because the Tiki project's developer focus is moving forward with

Tiki users who want or need to continue to use Tiki 25 such as for PHP-compatibility reasons can benefit from this situation, though, and get the color mode feature. If the user clones or downloads the latest branch 25x files and has some experience with SCSS compiling or can get up to speed on that, a branch 25x theme or a compatible user-made theme can be updated to work with the Bootstrap 5.3.0 version that's now in that branch's vendor directory. This will make color mode support available at the user's site (though other Bootstrap 5.3.0 features may not necessarily be supported). To do this:

Edit lines 847 and 849 (replace adjust-hue() with var() as shown)
Copy to clipboard
.wp-sign { color: $tooltip-color; background-color: $tooltip-bg; a, a:visited { color: var(--tiki-tooltip-link-color); //adjust-hue($tooltip-color, 30%); &:hover { color: var(--tiki-tooltip-link-hover-color); //adjust-hue($tooltip-color, 45%); text-decoration: none; } } }

And

Edit (comment out) line 1097
Copy to clipboard
// border-color: darken($input-bg, 10%);

The updated theme(s) should compile. If there are any questions or problems, please ask on Tiki's Matrix chat.

Implementing Color Modes

To implement color mode support, a switch is needed. Tiki's branch 25x doesn't include a color mode switch, but one can be made by the user based on the code used at the

To make the color mode switch follow these steps:

  1. Copy the content of
  2. Configure a new menupage module and select the page you just made as its menupage.
  3. Assign the module. Usually the color mode switch is at the top of the page, so Tiki's "top" module zone is an appropriate location. The nobox parameter should be "y".

The color switch should work for any Tiki theme that has been updated to support color modes.


Page last modified on Thursday 14 of August, 2025 06:19:42 GMT-0000