I'm pretty new to TikZ and I'd like to make a page with a colored background with some circles on it.
I've already tried this:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[usenames,x11names,dvipsnames,svgnames]{xcolor}
\usepackage{graphicx,amsmath,latexsym,amssymb,amsthm,geometry}
\usepackage{tikz}
\usepackage{pagecolor}
\usepackage[dvipsnames]{xcolor}
\usetikzlibrary{decorations, decorations.text,backgrounds}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
%\pagecolor{blue}
\begin{document}
\begin{tikzpicture}[background rectangle/.style={fill=cyan!10}, show background rectangle]
\begin{scope}[blend group = soft light]
\fill[red!30!white] (0:0) circle (0.5);
\fill[green!30!white] (0:0) circle (0.25);
\fill[blue!30!white] (330:2.2) circle (0.3);
\fill[purple!30!white] (251:0) circle (0.3);
\fill[brown!30!white] (297:21) circle (0.3);
\end{scope}
\end{tikzpicture}
\end{document}
The problem is that I can't get a proper A4 format, so i tried to cheat by putting circles in the corners but even with it, the format isn't the good one. I've also tried with \pagecolor but it doesn't change the background color.
I don't know if it's the right place to post but I didn't find good solutions for now.


previewlines will tell you that. Your figure is not in a4 size. – Apr 15 '19 at 11:40