├── .DS_Store ├── .gitignore ├── Example ├── Podfile ├── RZColorful.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RZColorful-Example.xcscheme ├── RZColorful.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── rztime.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── RZColorful │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Demo │ │ ├── AttributedStringUseDemoVC.h │ │ ├── AttributedStringUseDemoVC.m │ │ ├── MDToHtmlViewController.h │ │ ├── MDToHtmlViewController.m │ │ ├── RZFoldLabelVC.h │ │ ├── RZFoldLabelVC.m │ │ ├── RZTestViewController.h │ │ ├── RZTestViewController.m │ │ ├── RZTextViewVC.h │ │ └── RZTextViewVC.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── image.imageset │ │ │ ├── Contents.json │ │ │ └── image@3x.png │ ├── RZAppDelegate.h │ ├── RZAppDelegate.m │ ├── RZColorful-Info.plist │ ├── RZColorful-Prefix.pch │ ├── RZViewController.h │ ├── RZViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── RZColorful.podspec ├── RZColorful ├── Assets │ └── .gitkeep └── Classes │ ├── AttributeCore │ ├── NSAttributedString+RZColorful.h │ ├── NSAttributedString+RZColorful.m │ ├── NSAttributedString+RZHtml.h │ ├── NSAttributedString+RZHtml.m │ ├── NSString+RZCode.h │ ├── NSString+RZCode.m │ ├── RZColorfulAttribute.h │ ├── RZColorfulAttribute.m │ ├── RZColorfulConferrer.h │ ├── RZColorfulConferrer.m │ ├── RZImageAttachment.h │ ├── RZImageAttachment.m │ ├── RZParagraphStyle.h │ ├── RZParagraphStyle.m │ ├── RZShadow.h │ └── RZShadow.m │ ├── RZColorful.h │ └── UICore │ ├── LabelFoldHelper.h │ ├── LabelFoldHelper.m │ ├── MarkdownRZ.h │ ├── MarkdownRZ.m │ ├── RZTapActionHelper.h │ ├── RZTapActionHelper.m │ ├── UIButton+RZColorful.h │ ├── UIButton+RZColorful.m │ ├── UILabel+RZColorful.h │ ├── UILabel+RZColorful.m │ ├── UITextField+RZColorful.h │ ├── UITextField+RZColorful.m │ ├── UITextField+SelectedRange.h │ ├── UITextField+SelectedRange.m │ ├── UITextView+RZColorful.h │ ├── UITextView+RZColorful.m │ ├── UIView+RZContinueFirstResponder.h │ └── UIView+RZContinueFirstResponder.m ├── UpdateLog.md ├── _Pods.xcodeproj ├── image_1.jpg ├── image_2.png └── line.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | Podfile.lock 3 | */xcuserdata/ 4 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/RZColorful.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RZColorful.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RZColorful.xcodeproj/xcshareddata/xcschemes/RZColorful-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcodeproj/xcshareddata/xcschemes/RZColorful-Example.xcscheme -------------------------------------------------------------------------------- /Example/RZColorful.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RZColorful.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/RZColorful.xcworkspace/xcuserdata/rztime.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcworkspace/xcuserdata/rztime.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/RZColorful.xcworkspace/xcuserdata/rztime.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful.xcworkspace/xcuserdata/rztime.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/RZColorful/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/RZColorful/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/RZColorful/Demo/AttributedStringUseDemoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/AttributedStringUseDemoVC.h -------------------------------------------------------------------------------- /Example/RZColorful/Demo/AttributedStringUseDemoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/AttributedStringUseDemoVC.m -------------------------------------------------------------------------------- /Example/RZColorful/Demo/MDToHtmlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/MDToHtmlViewController.h -------------------------------------------------------------------------------- /Example/RZColorful/Demo/MDToHtmlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/MDToHtmlViewController.m -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZFoldLabelVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZFoldLabelVC.h -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZFoldLabelVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZFoldLabelVC.m -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZTestViewController.h -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZTestViewController.m -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZTextViewVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZTextViewVC.h -------------------------------------------------------------------------------- /Example/RZColorful/Demo/RZTextViewVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Demo/RZTextViewVC.m -------------------------------------------------------------------------------- /Example/RZColorful/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RZColorful/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/RZColorful/Images.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Images.xcassets/image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RZColorful/Images.xcassets/image.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/Images.xcassets/image.imageset/image@3x.png -------------------------------------------------------------------------------- /Example/RZColorful/RZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZAppDelegate.h -------------------------------------------------------------------------------- /Example/RZColorful/RZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZAppDelegate.m -------------------------------------------------------------------------------- /Example/RZColorful/RZColorful-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZColorful-Info.plist -------------------------------------------------------------------------------- /Example/RZColorful/RZColorful-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZColorful-Prefix.pch -------------------------------------------------------------------------------- /Example/RZColorful/RZViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZViewController.h -------------------------------------------------------------------------------- /Example/RZColorful/RZViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/RZViewController.m -------------------------------------------------------------------------------- /Example/RZColorful/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/RZColorful/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/RZColorful/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/README.md -------------------------------------------------------------------------------- /RZColorful.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful.podspec -------------------------------------------------------------------------------- /RZColorful/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSAttributedString+RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSAttributedString+RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSAttributedString+RZColorful.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSAttributedString+RZColorful.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSAttributedString+RZHtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSAttributedString+RZHtml.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSAttributedString+RZHtml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSAttributedString+RZHtml.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSString+RZCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSString+RZCode.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/NSString+RZCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/NSString+RZCode.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZColorfulAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZColorfulAttribute.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZColorfulAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZColorfulAttribute.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZColorfulConferrer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZColorfulConferrer.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZColorfulConferrer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZColorfulConferrer.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZImageAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZImageAttachment.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZImageAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZImageAttachment.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZParagraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZParagraphStyle.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZParagraphStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZParagraphStyle.m -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZShadow.h -------------------------------------------------------------------------------- /RZColorful/Classes/AttributeCore/RZShadow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/AttributeCore/RZShadow.m -------------------------------------------------------------------------------- /RZColorful/Classes/RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/LabelFoldHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/LabelFoldHelper.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/LabelFoldHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/LabelFoldHelper.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/MarkdownRZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/MarkdownRZ.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/MarkdownRZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/MarkdownRZ.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/RZTapActionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/RZTapActionHelper.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/RZTapActionHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/RZTapActionHelper.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UIButton+RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UIButton+RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UIButton+RZColorful.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UIButton+RZColorful.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UILabel+RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UILabel+RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UILabel+RZColorful.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UILabel+RZColorful.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextField+RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextField+RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextField+RZColorful.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextField+RZColorful.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextField+SelectedRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextField+SelectedRange.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextField+SelectedRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextField+SelectedRange.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextView+RZColorful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextView+RZColorful.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UITextView+RZColorful.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UITextView+RZColorful.m -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UIView+RZContinueFirstResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UIView+RZContinueFirstResponder.h -------------------------------------------------------------------------------- /RZColorful/Classes/UICore/UIView+RZContinueFirstResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/RZColorful/Classes/UICore/UIView+RZContinueFirstResponder.m -------------------------------------------------------------------------------- /UpdateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/UpdateLog.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/image_1.jpg -------------------------------------------------------------------------------- /image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/image_2.png -------------------------------------------------------------------------------- /line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rztime/RZColorful/HEAD/line.png --------------------------------------------------------------------------------