自分で試してみればいいですよ。
#include "DxLib.h"
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,LPSTR lpCmdLine, int nCmdShow ){
ChangeWindowMode( TRUE ) ; // ウインドウモードに変更
if( DxLib_Init() == -1 ) return -1; // DXライブラリ初期化処理 エラーが起きたら終了
int White;
White = GetColor( 255 , 255 , 255 ) ; // 白色の値を取得
DrawString(50,50,"通常",White);
SetDrawBright(100,100,100);
DrawString(50,100,"SetDrawBright後",White);
WaitKey() ; // キーの入力待ち(『WaitKey』を使用)
DxLib_End() ; // DXライブラリ使用の終了処理
return 0 ; // ソフトの終了
}