1
2
3
4
5
6
7
8
9
10
11
12
13
14# -*- coding: utf-8 -*-
# V1.0.1 26-08-10
__title__ = 'Cycle\nTheme'
__author__ = 'bimgineer'
__min_revit_ver__ = 2024
__doc__ = 'Cycle Revit UI theme and canvas color scheme through preset combinations.'
from pyrevit import EXEC_PARAMS
from Autodesk.Revit.UI import UIThemeManager, UITheme
PAIRS = [
(UITheme.Light, UITheme.Light),
(UITheme.Dark, UITheme.Dark),
(UITheme.Dark, UITheme.Light),