├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── .jazzy.yaml ├── .swiftlint.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Demo └── Catalogue │ ├── Catalogue.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── Catalogue │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── grand-canyon.imageset │ │ ├── Contents.json │ │ └── grand-canyon.jpg │ └── template-icon.imageset │ │ ├── Contents.json │ │ └── template-icon.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── BaseViewController.swift │ ├── ColorsDemoViewController.swift │ ├── DemoMenuViewController.swift │ ├── DesignSystem.swift │ ├── IconographyViewController.swift │ ├── Info.plist │ ├── LayoutDemoViewController.swift │ ├── Main.storyboard │ ├── MenuItem.swift │ ├── ScaleChartsViewController.swift │ ├── StyleDemoViewController.swift │ ├── Styles.swift │ ├── Theme+System.swift │ ├── ThemeDemoViewController.swift │ ├── ToolKitViewController.swift │ ├── Typography+AvenirNext.swift │ ├── Typography+Menlo.swift │ ├── Typography+OpenSans.swift │ ├── TypographyDemoViewController.swift │ ├── Utility.swift │ └── open-sans │ ├── Apache License.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-Semibold.ttf │ └── OpenSans-SemiboldItalic.ttf ├── Documentation └── Usage.md ├── Doric.podspec ├── Doric.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Doric.xcscheme ├── Doric.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── Source ├── AnchorLayout.swift ├── Bundle+Extension.swift ├── CardView.swift ├── Colors.swift ├── Debug+Preview.swift ├── DesignDebuggerViewController.swift ├── Doric.h ├── Doric.swift ├── GradientColor.swift ├── GradientView.swift ├── GraphView.swift ├── Iconography.swift ├── Implemented.swift ├── Info.plist ├── Layout.swift ├── Notification.swift ├── Scale.swift ├── Style.swift ├── Theme.swift ├── Typography.swift ├── UIColor+Extension.swift ├── UIStackView+Border.swift ├── UIView+Guide.swift └── internal-icon-close.png ├── demo-screenshot.png ├── docs ├── Classes.html ├── Classes │ ├── CardView.html │ ├── Doric.html │ ├── DualThemeManager.html │ └── GradientView.html ├── Enums.html ├── Enums │ ├── ButtonHeight.html │ ├── IconSize.html │ ├── LayoutRelation.html │ ├── Shadow.html │ └── Space.html ├── Extensions.html ├── Extensions │ ├── Bundle.html │ ├── Notification.html │ ├── UIButton.html │ ├── UIColor.html │ ├── UIColor │ │ └── System.html │ ├── UIFont.html │ ├── UIImage.html │ ├── UIImageView.html │ ├── UIStackView.html │ ├── UIView.html │ └── UIView │ │ └── Guideline.html ├── Guides.html ├── Protocols.html ├── Protocols │ ├── Color.html │ ├── ColorPalette.html │ ├── DarkenColorSet.html │ ├── DualThemeSwitcher.html │ ├── DynamicTypeCustomTextStyleFont.html │ ├── DynamicTypeFont.html │ ├── DynamicTypography.html │ ├── ExtendedDarkenColorSet.html │ ├── ExtendedLightenColorSet.html │ ├── Font.html │ ├── FontConvertible.html │ ├── FullScale.html │ ├── GradientColor.html │ ├── LargerColorPalette.html │ ├── LayoutValueRepresentable.html │ ├── LightenColorSet.html │ ├── MainColorPalette.html │ ├── Scale.html │ ├── SemanticColorPalette.html │ ├── Style.html │ ├── SystemFont.html │ ├── Theme.html │ ├── ThemeListener.html │ ├── ThemeManager.html │ ├── ThemeSwitcher.html │ ├── TwoStateValueLevel.html │ ├── Typography.html │ ├── TypographyOptions.html │ └── ValueLevel.html ├── Structs.html ├── Structs │ ├── Border.html │ ├── CornerRadius.html │ ├── DefaultGrayScalePalette.html │ ├── DefaultSemanticColorPalette.html │ ├── FontDescription.html │ ├── Settings.html │ ├── SystemTypography.html │ ├── ThemeNotification.html │ └── Transparency.html ├── Typealiases.html ├── _config.yml ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── Doric.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── CardView.html │ │ │ │ ├── Doric.html │ │ │ │ ├── DualThemeManager.html │ │ │ │ └── GradientView.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ ├── ButtonHeight.html │ │ │ │ ├── IconSize.html │ │ │ │ ├── LayoutRelation.html │ │ │ │ ├── Shadow.html │ │ │ │ └── Space.html │ │ │ ├── Extensions.html │ │ │ ├── Extensions │ │ │ │ ├── Bundle.html │ │ │ │ ├── Notification.html │ │ │ │ ├── UIButton.html │ │ │ │ ├── UIColor.html │ │ │ │ ├── UIColor │ │ │ │ │ └── System.html │ │ │ │ ├── UIFont.html │ │ │ │ ├── UIImage.html │ │ │ │ ├── UIImageView.html │ │ │ │ ├── UIStackView.html │ │ │ │ ├── UIView.html │ │ │ │ └── UIView │ │ │ │ │ └── Guideline.html │ │ │ ├── Guides.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ ├── Color.html │ │ │ │ ├── ColorPalette.html │ │ │ │ ├── DarkenColorSet.html │ │ │ │ ├── DualThemeSwitcher.html │ │ │ │ ├── DynamicTypeCustomTextStyleFont.html │ │ │ │ ├── DynamicTypeFont.html │ │ │ │ ├── DynamicTypography.html │ │ │ │ ├── ExtendedDarkenColorSet.html │ │ │ │ ├── ExtendedLightenColorSet.html │ │ │ │ ├── Font.html │ │ │ │ ├── FontConvertible.html │ │ │ │ ├── FullScale.html │ │ │ │ ├── GradientColor.html │ │ │ │ ├── LargerColorPalette.html │ │ │ │ ├── LayoutValueRepresentable.html │ │ │ │ ├── LightenColorSet.html │ │ │ │ ├── MainColorPalette.html │ │ │ │ ├── Scale.html │ │ │ │ ├── SemanticColorPalette.html │ │ │ │ ├── Style.html │ │ │ │ ├── SystemFont.html │ │ │ │ ├── Theme.html │ │ │ │ ├── ThemeListener.html │ │ │ │ ├── ThemeManager.html │ │ │ │ ├── ThemeSwitcher.html │ │ │ │ ├── TwoStateValueLevel.html │ │ │ │ ├── Typography.html │ │ │ │ ├── TypographyOptions.html │ │ │ │ └── ValueLevel.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ ├── Border.html │ │ │ │ ├── CornerRadius.html │ │ │ │ ├── DefaultGrayScalePalette.html │ │ │ │ ├── DefaultSemanticColorPalette.html │ │ │ │ ├── FontDescription.html │ │ │ │ ├── Settings.html │ │ │ │ ├── SystemTypography.html │ │ │ │ ├── ThemeNotification.html │ │ │ │ └── Transparency.html │ │ │ ├── Typealiases.html │ │ │ ├── _config.yml │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ ├── search.json │ │ │ └── usage.html │ │ │ └── docSet.dsidx │ ├── Doric.tgz │ └── Doric.xml ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js ├── search.json └── usage.html ├── doric.png └── screens-preview.gif /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/grand-canyon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/grand-canyon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/grand-canyon.imageset/grand-canyon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/grand-canyon.imageset/grand-canyon.jpg -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/template-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/template-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Assets.xcassets/template-icon.imageset/template-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Assets.xcassets/template-icon.imageset/template-icon.png -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/BaseViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/ColorsDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/ColorsDemoViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/DemoMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/DemoMenuViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/DesignSystem.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/IconographyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/IconographyViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Info.plist -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/LayoutDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/LayoutDemoViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Main.storyboard -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/MenuItem.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/ScaleChartsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/ScaleChartsViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/StyleDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/StyleDemoViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Styles.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Theme+System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Theme+System.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/ThemeDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/ThemeDemoViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/ToolKitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/ToolKitViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Typography+AvenirNext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Typography+AvenirNext.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Typography+Menlo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Typography+Menlo.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Typography+OpenSans.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Typography+OpenSans.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/TypographyDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/TypographyDemoViewController.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/Utility.swift -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/Apache License.txt -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Demo/Catalogue/Catalogue/open-sans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Demo/Catalogue/Catalogue/open-sans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /Documentation/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Documentation/Usage.md -------------------------------------------------------------------------------- /Doric.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.podspec -------------------------------------------------------------------------------- /Doric.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Doric.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Doric.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Doric.xcodeproj/xcshareddata/xcschemes/Doric.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcodeproj/xcshareddata/xcschemes/Doric.xcscheme -------------------------------------------------------------------------------- /Doric.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Doric.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Doric.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/README.md -------------------------------------------------------------------------------- /Source/AnchorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/AnchorLayout.swift -------------------------------------------------------------------------------- /Source/Bundle+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Bundle+Extension.swift -------------------------------------------------------------------------------- /Source/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/CardView.swift -------------------------------------------------------------------------------- /Source/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Colors.swift -------------------------------------------------------------------------------- /Source/Debug+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Debug+Preview.swift -------------------------------------------------------------------------------- /Source/DesignDebuggerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/DesignDebuggerViewController.swift -------------------------------------------------------------------------------- /Source/Doric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Doric.h -------------------------------------------------------------------------------- /Source/Doric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Doric.swift -------------------------------------------------------------------------------- /Source/GradientColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/GradientColor.swift -------------------------------------------------------------------------------- /Source/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/GradientView.swift -------------------------------------------------------------------------------- /Source/GraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/GraphView.swift -------------------------------------------------------------------------------- /Source/Iconography.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Iconography.swift -------------------------------------------------------------------------------- /Source/Implemented.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Implemented.swift -------------------------------------------------------------------------------- /Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Info.plist -------------------------------------------------------------------------------- /Source/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Layout.swift -------------------------------------------------------------------------------- /Source/Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Notification.swift -------------------------------------------------------------------------------- /Source/Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Scale.swift -------------------------------------------------------------------------------- /Source/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Style.swift -------------------------------------------------------------------------------- /Source/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Theme.swift -------------------------------------------------------------------------------- /Source/Typography.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/Typography.swift -------------------------------------------------------------------------------- /Source/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/UIColor+Extension.swift -------------------------------------------------------------------------------- /Source/UIStackView+Border.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/UIStackView+Border.swift -------------------------------------------------------------------------------- /Source/UIView+Guide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/UIView+Guide.swift -------------------------------------------------------------------------------- /Source/internal-icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/Source/internal-icon-close.png -------------------------------------------------------------------------------- /demo-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/demo-screenshot.png -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/CardView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Classes/CardView.html -------------------------------------------------------------------------------- /docs/Classes/Doric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Classes/Doric.html -------------------------------------------------------------------------------- /docs/Classes/DualThemeManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Classes/DualThemeManager.html -------------------------------------------------------------------------------- /docs/Classes/GradientView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Classes/GradientView.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/ButtonHeight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums/ButtonHeight.html -------------------------------------------------------------------------------- /docs/Enums/IconSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums/IconSize.html -------------------------------------------------------------------------------- /docs/Enums/LayoutRelation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums/LayoutRelation.html -------------------------------------------------------------------------------- /docs/Enums/Shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums/Shadow.html -------------------------------------------------------------------------------- /docs/Enums/Space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Enums/Space.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/Bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/Bundle.html -------------------------------------------------------------------------------- /docs/Extensions/Notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/Notification.html -------------------------------------------------------------------------------- /docs/Extensions/UIButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIButton.html -------------------------------------------------------------------------------- /docs/Extensions/UIColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIColor.html -------------------------------------------------------------------------------- /docs/Extensions/UIColor/System.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIColor/System.html -------------------------------------------------------------------------------- /docs/Extensions/UIFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIFont.html -------------------------------------------------------------------------------- /docs/Extensions/UIImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIImage.html -------------------------------------------------------------------------------- /docs/Extensions/UIImageView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIImageView.html -------------------------------------------------------------------------------- /docs/Extensions/UIStackView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIStackView.html -------------------------------------------------------------------------------- /docs/Extensions/UIView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIView.html -------------------------------------------------------------------------------- /docs/Extensions/UIView/Guideline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Extensions/UIView/Guideline.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Color.html -------------------------------------------------------------------------------- /docs/Protocols/ColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ColorPalette.html -------------------------------------------------------------------------------- /docs/Protocols/DarkenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/DarkenColorSet.html -------------------------------------------------------------------------------- /docs/Protocols/DualThemeSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/DualThemeSwitcher.html -------------------------------------------------------------------------------- /docs/Protocols/DynamicTypeCustomTextStyleFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/DynamicTypeCustomTextStyleFont.html -------------------------------------------------------------------------------- /docs/Protocols/DynamicTypeFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/DynamicTypeFont.html -------------------------------------------------------------------------------- /docs/Protocols/DynamicTypography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/DynamicTypography.html -------------------------------------------------------------------------------- /docs/Protocols/ExtendedDarkenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ExtendedDarkenColorSet.html -------------------------------------------------------------------------------- /docs/Protocols/ExtendedLightenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ExtendedLightenColorSet.html -------------------------------------------------------------------------------- /docs/Protocols/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Font.html -------------------------------------------------------------------------------- /docs/Protocols/FontConvertible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/FontConvertible.html -------------------------------------------------------------------------------- /docs/Protocols/FullScale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/FullScale.html -------------------------------------------------------------------------------- /docs/Protocols/GradientColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/GradientColor.html -------------------------------------------------------------------------------- /docs/Protocols/LargerColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/LargerColorPalette.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutValueRepresentable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/LayoutValueRepresentable.html -------------------------------------------------------------------------------- /docs/Protocols/LightenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/LightenColorSet.html -------------------------------------------------------------------------------- /docs/Protocols/MainColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/MainColorPalette.html -------------------------------------------------------------------------------- /docs/Protocols/Scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Scale.html -------------------------------------------------------------------------------- /docs/Protocols/SemanticColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/SemanticColorPalette.html -------------------------------------------------------------------------------- /docs/Protocols/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Style.html -------------------------------------------------------------------------------- /docs/Protocols/SystemFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/SystemFont.html -------------------------------------------------------------------------------- /docs/Protocols/Theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Theme.html -------------------------------------------------------------------------------- /docs/Protocols/ThemeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ThemeListener.html -------------------------------------------------------------------------------- /docs/Protocols/ThemeManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ThemeManager.html -------------------------------------------------------------------------------- /docs/Protocols/ThemeSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ThemeSwitcher.html -------------------------------------------------------------------------------- /docs/Protocols/TwoStateValueLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/TwoStateValueLevel.html -------------------------------------------------------------------------------- /docs/Protocols/Typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/Typography.html -------------------------------------------------------------------------------- /docs/Protocols/TypographyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/TypographyOptions.html -------------------------------------------------------------------------------- /docs/Protocols/ValueLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Protocols/ValueLevel.html -------------------------------------------------------------------------------- /docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs.html -------------------------------------------------------------------------------- /docs/Structs/Border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/Border.html -------------------------------------------------------------------------------- /docs/Structs/CornerRadius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/CornerRadius.html -------------------------------------------------------------------------------- /docs/Structs/DefaultGrayScalePalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/DefaultGrayScalePalette.html -------------------------------------------------------------------------------- /docs/Structs/DefaultSemanticColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/DefaultSemanticColorPalette.html -------------------------------------------------------------------------------- /docs/Structs/FontDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/FontDescription.html -------------------------------------------------------------------------------- /docs/Structs/Settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/Settings.html -------------------------------------------------------------------------------- /docs/Structs/SystemTypography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/SystemTypography.html -------------------------------------------------------------------------------- /docs/Structs/ThemeNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/ThemeNotification.html -------------------------------------------------------------------------------- /docs/Structs/Transparency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Structs/Transparency.html -------------------------------------------------------------------------------- /docs/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/Typealiases.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/CardView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/CardView.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/Doric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/Doric.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/DualThemeManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/DualThemeManager.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/GradientView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Classes/GradientView.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/ButtonHeight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/ButtonHeight.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/IconSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/IconSize.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/LayoutRelation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/LayoutRelation.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/Shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/Shadow.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/Space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Enums/Space.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/Bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/Bundle.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/Notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/Notification.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIButton.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIColor.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIColor/System.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIColor/System.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIFont.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIImage.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIImageView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIImageView.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIStackView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIStackView.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIView.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIView/Guideline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Extensions/UIView/Guideline.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Guides.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Color.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ColorPalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DarkenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DarkenColorSet.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DualThemeSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DualThemeSwitcher.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypeCustomTextStyleFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypeCustomTextStyleFont.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypeFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypeFont.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/DynamicTypography.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ExtendedDarkenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ExtendedDarkenColorSet.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ExtendedLightenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ExtendedLightenColorSet.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Font.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/FontConvertible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/FontConvertible.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/FullScale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/FullScale.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/GradientColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/GradientColor.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LargerColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LargerColorPalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LayoutValueRepresentable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LayoutValueRepresentable.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LightenColorSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/LightenColorSet.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/MainColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/MainColorPalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Scale.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/SemanticColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/SemanticColorPalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Style.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/SystemFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/SystemFont.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Theme.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeListener.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeManager.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ThemeSwitcher.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/TwoStateValueLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/TwoStateValueLevel.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/Typography.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/TypographyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/TypographyOptions.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ValueLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Protocols/ValueLevel.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Border.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/CornerRadius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/CornerRadius.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/DefaultGrayScalePalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/DefaultGrayScalePalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/DefaultSemanticColorPalette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/DefaultSemanticColorPalette.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/FontDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/FontDescription.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Settings.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/SystemTypography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/SystemTypography.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/ThemeNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/ThemeNotification.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Transparency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Structs/Transparency.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/Typealiases.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/_config.yml -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/Documents/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/Documents/usage.html -------------------------------------------------------------------------------- /docs/docsets/Doric.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/Doric.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.tgz -------------------------------------------------------------------------------- /docs/docsets/Doric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/docsets/Doric.xml -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/docs/usage.html -------------------------------------------------------------------------------- /doric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/doric.png -------------------------------------------------------------------------------- /screens-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshk/Doric/HEAD/screens-preview.gif --------------------------------------------------------------------------------