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