Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
example-github/semantic/src/theme.config
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
92 lines (76 sloc)
2.48 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
████████╗██╗ ██╗███████╗███╗ ███╗███████╗███████╗ | |
╚══██╔══╝██║ ██║██╔════╝████╗ ████║██╔════╝██╔════╝ | |
██║ ███████║█████╗ ██╔████╔██║█████╗ ███████╗ | |
██║ ██╔══██║██╔══╝ ██║╚██╔╝██║██╔══╝ ╚════██║ | |
██║ ██║ ██║███████╗██║ ╚═╝ ██║███████╗███████║ | |
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝ | |
*/ | |
/******************************* | |
Theme Selection | |
*******************************/ | |
/* To override a theme for an individual element | |
specify theme name below | |
*/ | |
/* Global */ | |
@site : 'github'; | |
@reset : 'default'; | |
/* Elements */ | |
@button : 'github'; | |
@container : 'github'; | |
@divider : 'default'; | |
@flag : 'default'; | |
@header : 'github'; | |
@icon : 'github'; | |
@image : 'github'; | |
@input : 'github'; | |
@label : 'github'; | |
@list : 'default'; | |
@loader : 'default'; | |
@rail : 'default'; | |
@reveal : 'default'; | |
@segment : 'github'; | |
@step : 'github'; | |
/* Collections */ | |
@breadcrumb : 'github'; | |
@form : 'github'; | |
@grid : 'default'; | |
@menu : 'github'; | |
@message : 'github'; | |
@table : 'github'; | |
/* Modules */ | |
@accordion : 'default'; | |
@checkbox : 'default'; | |
@dimmer : 'default'; | |
@dropdown : 'github'; | |
@embed : 'default'; | |
@modal : 'default'; | |
@nag : 'default'; | |
@popup : 'github'; | |
@progress : 'default'; | |
@rating : 'default'; | |
@search : 'default'; | |
@shape : 'default'; | |
@sidebar : 'default'; | |
@sticky : 'default'; | |
@tab : 'default'; | |
@transition : 'default'; | |
/* Views */ | |
@ad : 'default'; | |
@card : 'default'; | |
@comment : 'default'; | |
@feed : 'default'; | |
@item : 'default'; | |
@statistic : 'default'; | |
/******************************* | |
Folders | |
*******************************/ | |
/* Path to theme packages */ | |
@themesFolder : 'themes'; | |
/* Path to site override folder */ | |
@siteFolder : 'site/'; | |
/******************************* | |
Import Theme | |
*******************************/ | |
@import "theme.less"; | |
/* End Config */ |