mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-16 07:46:57 +00:00
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
import { Color } from '@/lib/types'
|
|
|
|
type Setting = {
|
|
color: Color
|
|
theme: 'light' | 'dark' | 'auto'
|
|
}
|
|
|
|
export default Setting
|