From 69b92ddfc7110dc6ab0aeb0ab903a7e743e6fe62 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Sat, 7 Sep 2024 10:21:49 -0400 Subject: [PATCH] Mention themes --- Sources/Neon/TextSystemInterface.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Neon/TextSystemInterface.swift b/Sources/Neon/TextSystemInterface.swift index aabf9d8..c35c122 100644 --- a/Sources/Neon/TextSystemInterface.swift +++ b/Sources/Neon/TextSystemInterface.swift @@ -16,5 +16,7 @@ public protocol TextSystemInterface { } /// A function that translates a semantic `Token` into styling attributes. +/// +/// This is also where theming could be taken into account. public typealias TokenAttributeProvider = (Token) -> [NSAttributedString.Key: Any]