mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
117 lines
2.1 KiB
CSS
117 lines
2.1 KiB
CSS
|
/**
|
||
|
* Kimono - heavily based on the Monokai theme.
|
||
|
*
|
||
|
* Dark, simple and uncluttered.
|
||
|
*
|
||
|
* Some colours stolen from http://www.eclipsecolorthemes.org/?view=theme&id=52
|
||
|
*/
|
||
|
|
||
|
.luminous {
|
||
|
color : #F8F8F2;
|
||
|
border-color: #555;
|
||
|
background-color: #272822;
|
||
|
}
|
||
|
.luminous .code {
|
||
|
}
|
||
|
/* line numbers */
|
||
|
.luminous .line-numbers {
|
||
|
border-right: 1px solid #d0d0d0 !important;
|
||
|
background-color: #272822 !important;
|
||
|
color : #F8F8F2 !important;
|
||
|
|
||
|
|
||
|
}
|
||
|
.luminous .highlight {
|
||
|
background-color: #3E3D32 !important;
|
||
|
}
|
||
|
|
||
|
.luminous .comment {
|
||
|
color: #75715E !important;
|
||
|
}
|
||
|
.luminous .preprocessor {
|
||
|
color: #9C977D !important;
|
||
|
}
|
||
|
.luminous .comment_note {
|
||
|
color: #CCDF32 !important;
|
||
|
}
|
||
|
.luminous .doccomment {
|
||
|
color: #D9E577 !important;
|
||
|
}
|
||
|
.luminous .doctag {
|
||
|
font-weight: bold !important;
|
||
|
}
|
||
|
.luminous .operator {
|
||
|
color: #F95994 !important;
|
||
|
}
|
||
|
.luminous .numeric {
|
||
|
color: #7FB347 !important;
|
||
|
}
|
||
|
.luminous .string, .luminous .character, .luminous .heredoc, .luminous .regex {
|
||
|
color: #E6DB74 !important;
|
||
|
}
|
||
|
.luminous .keyword {
|
||
|
color: #66CCB3 !important;
|
||
|
}
|
||
|
.luminous .variable {
|
||
|
color: #79ABFF !important;
|
||
|
}
|
||
|
.luminous .constant {
|
||
|
color: #EFB571 !important;
|
||
|
}
|
||
|
.luminous .function {
|
||
|
color: #79ABFF !important;
|
||
|
}
|
||
|
.luminous .user_function {
|
||
|
color: #BED6FF !important;
|
||
|
}
|
||
|
|
||
|
.luminous .htmltag {
|
||
|
color: #BED6FF !important;
|
||
|
}
|
||
|
|
||
|
.luminous .type {
|
||
|
color: #BFA4A4 !important;
|
||
|
}
|
||
|
|
||
|
.luminous .delimiter {
|
||
|
font-weight: bold !important;
|
||
|
}
|
||
|
|
||
|
.luminous .esc {
|
||
|
color: #AE81FF !important;
|
||
|
}
|
||
|
|
||
|
.luminous .diff_header_old {
|
||
|
color: #D25252 !important;
|
||
|
font-weight: bold !important;
|
||
|
}
|
||
|
.luminous .diff_header_new {
|
||
|
color: #51D251 !important;
|
||
|
font-weight: bold !important;
|
||
|
}
|
||
|
.luminous .diff_old {
|
||
|
color: #D25252 !important;
|
||
|
background-color: #2A0000 !important;
|
||
|
}
|
||
|
.luminous .diff_new {
|
||
|
color: #51D251 !important;
|
||
|
background-color: #002A00 !important;
|
||
|
}
|
||
|
|
||
|
.luminous .diff_unchanged{
|
||
|
color: #888888 !important;
|
||
|
|
||
|
}
|
||
|
|
||
|
.luminous .diff_unchanged * {
|
||
|
background-color: transparent !important;
|
||
|
color: #888888 !important;
|
||
|
}
|
||
|
|
||
|
.luminous .diff_range {
|
||
|
color: #79ABFF !important;
|
||
|
}
|
||
|
|
||
|
.luminous a {
|
||
|
color: #F95994 !important;
|
||
|
}
|