-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.84 KB
/
index.html
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
<!DOCTYPE html prefix="og: http://ogp.me/ns#">
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>256Color Escape Generator</title>
<meta name="description" content="vt100 256 color escape string generator">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet/less" type="text/css" href="css/main.less">
<link rel="shortcut icon" href="http://ixtli.github.io/256colors/favicon.ico" />
<meta property="og:type" content="application" />
<meta property="og:url" content="http://ixtli.github.io/256colors/" />
<meta property="og:image" content="http://ixtli.github.io/256colors/logo.png" />
<meta property="og:image:width" content="96" />
<meta property="og:image:height" content="96" />
<meta property="og:description" content="vt100-compatible 256 color escape string generator with shortcuts for common bash PS1 operators" />
<script type="text/javascript">
less = {
env: "development", // or "production"
async: false, // load imports async
fileAsync: false, // load imports async when in a page under
// a file protocol
poll: 1000, // when in watch mode, time in ms between polls
functions: {}, // user functions, keyed by name
dumpLineNumbers: "comments", // or "mediaQuery" or "all"
relativeUrls: false,// whether to adjust url's to be relative
// if false, url's are already relative to the
// entry less file
};
</script>
<script src="src/less.min.js" type="text/javascript"></script>
</head>
<body>
<div></div>
<h1>vt100 256color string generator</h1>
<div id="fg" class="picker">
<h4>foreground color</h4>
</div>
<div id="bg" class="picker">
<h4>background color</h4>
</div>
<div id="builder">
<h4>string builder input</h4>
<div id="toggle"></div><div id="input" class="code"></div>
</div>
<div id="ps1">
<h4>escaped output (click to select)</h4>
<input id="format" type="checkbox"></input>
<label for="format">format for PS1</label>
<div id="raw" class="code"></div>
</div>
<div id="gallery">
<h4>config instructions (coming soon?)</h4>
</div>
<div id="gallery">
<h4>examples (coming soon?)</h4>
</div>
<script src="src/modernizr.min.js" type="text/javascript"></script>
<script src="src/jquery-2.0.0.min.js"></script>
<script src="src/data.js"></script>
<script src="src/main.js"></script>
<script src="src/debug.js"></script>
</body>
</html>