summaryrefslogtreecommitdiff
path: root/debian/ionicons/generate_less.py
blob: 55fdc0cd0f092619ca3ebfc7206aa9db5ef8205f (plain)
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
# /usr/bin/env python3
#
# Copyright: 2017 Johannes Schauer <josch@debian.org>
#
# 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.

import sys
import json

args = json.load(sys.stdin)

print("""
@font-face {
	font-family:"%s";""" % args["fontFamilyName"])

srcs = []
for t in args["types"]:
    if t == "woff":
        srcs.append("""url("../fonts/ion.woff") format("woff")""")
    elif t == "woff2":
        srcs.append("""url("../fonts/ion.woff2") format("woff2")""")
    elif t == "ttf":
        srcs.append("""url("../fonts/ion.ttf") format("truetype")""")
    elif t == "svg":
        srcs.append("""url("../fonts/ion.svg") format("svg")""")
    else:
        raise Exception("unknown font type: %s" % t)

print("\tsrc:%s;" % ",\n\t\t".join(srcs))

print("""
	font-weight:normal;
	font-style:normal;
}

.ion-icon {
	&:before {
		font-family:"%s";
	}
	display:inline-block;
	vertical-align:middle;
	line-height:1;
	font-weight:normal;
	font-style:normal;
	speak:none;
	text-decoration:inherit;
	text-transform:none;
	text-rendering:auto;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
""" % args["fontFamilyName"])

for k in sorted(args["codepoints"].keys()):
    print("""
.%s-%s {
	&:before {
		content:"\\%s";
	}
}""" % (args["fontFamilyName"], k, hex(args["codepoints"][k])[2:]))