Skip to content

Commit e71d167

Browse files
authored
Merge pull request #6 from pollti/logo
new logo for NTH
2 parents 84c0991 + b90b1ad commit e71d167

File tree

9 files changed

+167
-5
lines changed

9 files changed

+167
-5
lines changed

icons/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.aux
2+
*.log
3+
*.pdf
4+
*.png
5+
*.synctex.gz

icons/NTH-48-l.png

-3.31 KB
Binary file not shown.

icons/NTH-48.png

-3.38 KB
Binary file not shown.

icons/NTH-96.png

-4.33 KB
Binary file not shown.

icons/logo-light.svg

Lines changed: 57 additions & 0 deletions
Loading

icons/logo.svg

Lines changed: 57 additions & 0 deletions
Loading

icons/logo.tex

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
\documentclass{article}
2+
\usepackage{tikz}
3+
\usetikzlibrary{arrows,arrows.meta}
4+
\usepackage[paperheight=10cm,paperwidth=10cm,margin=0mm]{geometry}
5+
\usepackage{ifthen}
6+
\usepackage{xcolor}
7+
8+
\begin{document}
9+
\newboolean{light}
10+
\setboolean{light}{true}
11+
\ifthenelse{\boolean{light}}{\definecolor{fore}{HTML}{000000}}{\definecolor{fore}{HTML}{FFFFFF}}
12+
\ifthenelse{\boolean{light}}{\definecolor{back}{HTML}{CD3D00}}{\definecolor{back}{HTML}{E25821}}
13+
\centering
14+
\hspace{2cm}\begin{tikzpicture}
15+
\path (0,0)--(0,4);
16+
\path [draw,line width=1cm,rounded corners,color=fore] (0,-4) -- (0,0) -- (9,0) -- (9, -4);
17+
\path [draw,line width=1cm,color=fore] (9,-2) -- (9, -4) -- (0,-4) -- (0,-2);
18+
\path [draw,line width=1cm,color=gray] (2,0) -- (7,0);
19+
\path [draw,line width=1cm,color=fore] (2,-2) -- (1.5, 2.5) -- (7.5,2.5) -- (7,-2);
20+
\draw [-{Latex[width=3cm,length=1.7cm]},color=back,line width=8mm] (4.5,2) -- (4.5,-3);
21+
\end{tikzpicture}
22+
\end{document}

icons/logo_wide.tex

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
\documentclass{article}
2+
\usepackage{tikz}
3+
\usetikzlibrary{arrows,arrows.meta}
4+
\usepackage[paperheight=9cm,paperwidth=18cm,margin=0mm]{geometry}
5+
\usepackage{ifthen}
6+
7+
\begin{document}
8+
\newboolean{light}
9+
\setboolean{light}{true}
10+
\ifthenelse{\boolean{light}}{\definecolor{fore}{HTML}{000000}}{\definecolor{fore}{HTML}{FFFFFF}}
11+
\ifthenelse{\boolean{light}}{\definecolor{back}{HTML}{CD3D00}}{\definecolor{back}{HTML}{E25821}}
12+
\centering
13+
\begin{tikzpicture}
14+
\path (0,0)--(0,3.9);
15+
\path [draw,line width=0.5cm,rounded corners,color=fore] (-2,-4) -- (0,0) -- (9,0) -- (11, -4);
16+
\path [draw,line width=0.5cm,color=fore] (10,-2) -- (11, -4) -- (-2,-4) -- (-1,-2);
17+
\path [draw,line width=0.5cm,color=gray] (2,0) -- (7,0);
18+
\path [draw,line width=1cm,color=fore] (2,-2) -- (1.5, 2.5) -- (7.5,2.5) -- (7,-2);
19+
\draw [-{Latex[width=3cm,length=1.7cm]},color=back,line width=8mm] (4.5,2) -- (4.5,-3);
20+
\end{tikzpicture}
21+
\end{document}

manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"homepage_url": "https:/github.com/pollti/NewTabHere",
1717

1818
"icons": {
19-
"48": "icons/NTH-48.png",
20-
"96": "icons/NTH-96.png"
19+
"48": "icons/logo.svg",
20+
"96": "icons/logo.svg"
2121
},
2222

2323
"permissions": [
@@ -42,11 +42,11 @@
4242
"browser_action": {
4343
"browser_style": true,
4444
"default_icon": {
45-
"48": "icons/NTH-48.png"
45+
"48": "icons/logo.svg"
4646
},
4747
"theme_icons": [{
48-
"light": "icons/NTH-48-l.png",
49-
"dark": "icons/NTH-48.png",
48+
"light": "icons/logo-light.svg",
49+
"dark": "icons/logo.svg",
5050
"size": 48
5151
}],
5252
"default_title": "__MSG_NewTabHereButtonCaption__",

0 commit comments

Comments
 (0)