//
//  KMToolbarMainItemView.swift
//  PDF Master
//
//  Created by tangchao on 2023/12/14.
//

import Cocoa

class KMToolbarMainItemView: KMToolbarItemView {

    override class var textFont: NSFont {
        get {
            .systemFont(ofSize: 11)
        }
    }
    
    override class var textNormalColor: NSColor {
        get {
            KMAppearance.subtitleColor()
        }
    }
    
    override class var textSelectedColor: NSColor {
        get {
            KMAppearance.subtitleColor()
        }
    }
    
    override func draw(_ dirtyRect: NSRect) {
        super.draw(dirtyRect)

        // Drawing code here.
    }
    
}