I am trying to draw a clock similar to http://www.ebay.com.au/itm/KUMON-Study-Wall-Clock-Learning-how-to-tell-time-easily-/252645374477 to learn how to use tikz on a full page diagram
I can draw the outer part of clock and labels, however I cannot figure out how to draw and colour the inner hours in the pink and yellow in the sample clock.
How do I create the 12 inner hour nodes so I can have each hour coloured yellow and pink?
I have completed the follwing code that attempts to draw the inner hours. But I am unsure how to complete it so I can colour each node seperately
\documentclass{article}
\usepackage{tikz}
\begin{document}
\thispagestyle{empty}
\newcommand\clock{%
\begin{tikzpicture}[overlay,remember picture, cap=round,line width=3pt]
\filldraw [fill=white] (0,0) circle (10cm);
\foreach \angle [count=\label] in {60,30,...,-270} %Draw 10 minute ticks
{
\draw[line width=1pt] (\angle:9.5cm) -- (\angle:10cm);
\draw (\angle:9cm) node{\label};
}
%
% Replace the following bit to draw inners hours in node
%
\foreach \angle [count=\label] in {60,30,...,-270} %Try to draw inner hours
{
\draw[line width=1pt] (\angle:6.25cm) -- (\angle:7.75cm); %Draws part of inner hour
}
\draw (0,0) circle (6.25cm);
\draw (0,0) circle (7.75cm);
\foreach \angle [count=\label] in {45,15,...,-285} %Draw inner hour
{
\draw (\angle:7.cm) node{\label};
}
%
% Replace the proceeding bit
%
\foreach \angle [count=\label] in {84,78,...,-270} % Draw Second Ticks
{
\draw[line width=1pt] (\angle:9.75cm) -- (\angle:10cm);
\draw (\angle:9.5cm) node{\label};
}
\foreach \angle in {0,90,180,270}
\draw[line width=4pt] (\angle:9cm) -- (\angle:10cm);
\path [fill=red] (0,0) circle (2pt);
%
\end{tikzpicture}%
}
\clock
\end{document}
Any suggestions would be most helpful as I am not sure how to do this?
Thanks



