forked from andre-simon/highlight
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path3024.theme
91 lines (75 loc) · 4.41 KB
/
3024.theme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
--[[ 2018/06/17 | Highlight v3.43 | Lua 5.3
================================================================================
Scheme: Base16 "3024"
Author: Jan T. Sott (http://github.com/idleberg)
License: MIT License
Source: https://github.com/chriskempson/base16-unclaimed-schemes
================================================================================
Converted from YAML by Tristano Ajmone:
<tajmone@gmail.com>
https://github.com/tajmone
https://gitlab.com/tajmone
--------------------------------------------------------------------------------
For more info on Chris Kempson's Base16, see:
http://chriskempson.com/projects/base16
------------------------------------------------------------------------------]]
Description = "Base16 3024"
Categories = {"dark", "base16"}
--------------------------------------------------------------------------------
base00 = "#090300" --> Default Background
base01 = "#3a3432" --> Lighter Background (Used for status bars)
base02 = "#4a4543" --> Selection Background
base03 = "#5c5855" --> Comments, Invisibles, Line Highlighting
base04 = "#807d7c" --> Dark Foreground (Used for status bars)
base05 = "#a5a2a2" --> Default Foreground, Caret, Delimiters, Operators
base06 = "#d6d5d4" --> Light Foreground (Not often used)
base07 = "#f7f7f7" --> Light Background (Not often used)
base08 = "#db2d20" --> Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
base09 = "#e8bbd0" --> Integers, Boolean, Constants, XML Attributes, Markup Link Url
base0A = "#fded02" --> Classes, Markup Bold, Search Text Background
base0B = "#01a252" --> Strings, Inherited Class, Markup Code, Diff Inserted
base0C = "#b5e4f4" --> Support, Regular Expressions, Escape Characters, Markup Quotes
base0D = "#01a0e4" --> Functions, Methods, Attribute IDs, Headings
base0E = "#a16a94" --> Keywords, Storage, Selector, Markup Italic, Diff Changed
base0F = "#cdab53" --> Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?>
--------------------------------------------------------------------------------
Canvas = { Colour = base00, Italic = false, Bold = false }
Default = { Colour = base05, Italic = false, Bold = false }
Number = { Colour = base09, Italic = false, Bold = false }
Operator = { Colour = base05, Italic = false, Bold = false }
String = { Colour = base0B, Italic = false, Bold = false }
Escape = { Colour = base0C, Italic = false, Bold = false }
StringPreProc = Escape
Interpolation = { Colour = base09, Italic = false, Bold = false }
LineComment = { Colour = base03, Italic = true, Bold = false } --> Italic
BlockComment = LineComment
LineNum = { Colour = base04, Italic = false, Bold = false }
PreProcessor = { Colour = base0F, Italic = false, Bold = false }
Keywords = {
{ Colour = base0E, Italic = false, Bold = true }, --> kwd 1
{ Colour = base0D, Italic = false, Bold = true }, --> kwd 2
{ Colour = base08, Italic = false, Bold = true }, --> kwd 3
{ Colour = base0A, Italic = false, Bold = true }, --> kwd 4
{ Colour = base0F, Italic = false, Bold = true }, --> kwd 5
{ Colour = base09, Italic = false, Bold = true }, --> kwd 6
}
--[[----------------------------------------------------------------------------
The MIT License
Copyright (c) 2018 Tristano Ajmone
Copyright (c) Jan T. Sott (http://github.com/idleberg)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------]]