-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.tex
77 lines (71 loc) · 2.2 KB
/
slides.tex
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
\documentclass[aspectratio=169]{beamer}
\usepackage{tikz}
\hypersetup{
colorlinks=true,
linkcolor=oneyellow,
filecolor=magenta,
urlcolor=onecyan,
}
\useinnertheme{rectangles}
\setbeamertemplate{itemize subitem}[circle]
\setbeamertemplate{navigation symbols}{}
\setbeamercolor{frametitle}{fg=white}
\definecolor{onedark}{HTML}{282C34}
\definecolor{oneorange}{HTML}{E0657C}
\definecolor{oneyellow}{HTML}{E5C07B}
\definecolor{onegreen}{HTML}{98C379}
\definecolor{oneblue}{HTML}{61AFEF}
\definecolor{onecyan}{HTML}{56B6C2}
\setbeamercolor{background canvas}{bg=onedark}
\setbeamercolor{normal text}{fg=white}
\setbeamercolor{itemize item}{fg=oneyellow}
\setbeamercolor{itemize subitem}{fg=oneblue}
\setbeamercolor{itemize subsubitem}{fg=oneocyan}
\setbeamercolor{title}{fg=oneblue}
\setbeamercolor{author}{fg=onecyan}
\setbeamercolor{date}{fg=oneyellow}
\setbeamertemplate{footline}[frame number]
\setbeamerfont{date}{size=\footnotesize}
\setbeamercolor{alerted text}{fg=oneyellow}
\setbeamercolor{frametitle}{fg=oneblue}
\setbeamertemplate{frametitle}{%
\vspace{0.1cm}
\insertframetitle
\vspace{0.1cm}
\hrule
}
\setbeamertemplate{itemize item}{
\tikz{
\draw[fill=oneyellow, draw=none] (0,-0.5pt) circle (1.50pt);
\draw[oneyellow, thick] (0.6pt,-1pt) arc(0:270:3pt and 3.5pt);
\draw[fill=oneyellow, draw=none] (-3pt, 0) circle (1.5pt);
\draw[oneyellow, thick] (-3.6pt,0) arc(180:445:3pt and 3.5pt);
}
}
\title{A beamer dark color theme using onedark colors}
\author{Md Arif Shaikh}
\institute{{\color{onecyan}International Centre for Theoretical Sciences, Bangalore, India}}
\date{\today}
\begin{document}
\thispagestyle{empty}
\maketitle
\begin{frame}
{A frame title}
First, few bullet points
\begin{itemize}
\item First item.
\item Second item.
\begin{itemize}
\item First sub item.
\item Second sub item.
\end{itemize}
\item Third bullet point.
\end{itemize}
Now, an equation
\begin{equation}
\label{eq:equation}
R_{\mu\nu} + \frac{1}{2} g_{\mu\nu} R = \frac{8\pi G}{c^4} T_{\mu \nu}
\end{equation}
\alert{Some alerted texts}. Finally, the \href{https://github.com/md-arif-shaikh/beamer-one-dark}{link to the repository.}
\end{frame}
\end{document}