I’m not sure whether you’re asking for two different weights of blackboard bold in the same document, or for a heavier blackboard-bold font.
Selecting a Heavier Blackboard Bold
I would first check the font samples in the mathalpha manual, if you are using PDFTeX. If you can use unicode-math, you can select a different weight of \mathbb with a command such as
\setmathfont{KPMath-Regular}
\setmathfont{KPMath-Semibold}[range=bb]
If your math font does not come in a bold version, you can fake one with something like
\setmathfont{NewCMMath-Book}
\setmathfont{NewCMMath-Book}[range=bb,
FakeBold=0.05]
You can make the blackboard bold heavier by increasing the number after FakeBold=.
Using Two Weights of Blackboard Bold
The mathalpha package supports \mathbbb for bolder-blackboard-bold. It only works for certain fonts.
Many other packages, including unicode-math and bm, allow you to write \boldsymbol{\mathbb{N}}. This requires you to have a bold math version defined. Normally, your font package will do this for you. If the math font you load with unicode-math has the weights -Regular and -Bold, the package will automatically load the latter as your bold math font.
You can also set this up manually, with commands such as
\setmathfont{KPMath-Light}
\setmathfont{KPMath-Semibold}[version=bold]
In legacy 8-bit TeX, you would set the bold math version for blackboard bold with a command such as
\SetMathAlphabet{\mathbb}{bold}{xyz}{U}{m}{b}
In either case, you could for convenience define a command
\providecommand\mathbbb[1]{\boldsymbol{\mathbb{#1}}}
\mathbf. – Bernard Nov 17 '21 at 11:11\mathbfinstead. In my domain-specific context, bolder blackboard font would be preferable, but\mathbfcould be a fall-back option. – Peter Nov 17 '21 at 11:30\mathbb) if you use luatex or xetex any Unicode math font has these so you could try stix, Cambria math, TeX Gyre Termes Math etc. with input ℂℕℙℤ – David Carlisle Nov 17 '21 at 11:35\documentclass{article}\usepackage{amsmath}\usepackage{amsfonts}\begin{document}$\mathbb{D}$\ooalign{$\mathbb{D}$\cr$\mkern0.5mu\mathbb{D}$}\end{document}(see https://tex.stackexchange.com/questions/207261/how-do-i-produce-a-double-flat-symbol-edit/207266#207266). – Cicada Nov 17 '21 at 13:19\mathbbb, but using two kerns makes a difference (even though it is still quite "thin"). Still, there is a weird rendering artifact forℂ(see my answer below). – Peter Nov 17 '21 at 13:55contourpackage output comparison, too. Unrelated: any non-font solution to a font question will look fake in some corner somewhere. Sounds like you are after a variable font (but again, that takes you away from pdflatex). – Cicada Nov 17 '21 at 14:27cmathbbalso one of a better choice – MadyYuvi Dec 13 '22 at 07:18